| Date: | Wed, 29 Sep 2010 14:18:18 -0500 |
| Reply-To: | Joe Matise <snoopy369@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Joe Matise <snoopy369@GMAIL.COM> |
| Subject: | OT: Re: Tagset Excelxp v1.116 or Style sasdocprinter |
|
| Content-Type: | text/plain; charset=ISO-8859-1 |
|---|
This isn't tech support? :)
-Joe
On Wed, Sep 29, 2010 at 2:11 PM, Nat Wooding <nathani@verizon.net> wrote:
> Philip
>
> Have you reported this to tech support?
>
> Nat Wooding
>
> -----Original Message-----
> From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
> Philip
> C
> Sent: Wednesday, September 29, 2010 2:19 PM
> To: SAS-L@LISTSERV.UGA.EDU
> Subject: Tagset Excelxp v1.116 or Style sasdocprinter
>
> I'm using a new version of the ExcelXP tagset and I'm finding some issues.
> One which I can replicate with an example is a bug(maybe) where all the
> verticle borders between the cells in each By-Line rows of the sheet are
> not colored white as they are in the other rows of the spreadsheet, and as
> they were when I used Excelxp v1.94(the last version I used before v1.116).
>
> Any suggestions or advice of how to instruct v.1.116 to behave like v1.94
> with respect to this? Thanks.
>
> (Couldn't find a SAS Problem Note nor any other mention on the web. )
>
> Sample code:
>
> title;footnote;
> options nocenter;
> ods listing close;
> ODS tagsets.excelxp /*testing with on excelxp v1.116 */
> body="test.xls"
> style=sasdocprinter
> options( sheet_interval='none' ) ;
>
> proc print noobs data=sample;
> BY letter;
> var number j_counter i_counter;
> run;
>
> ODS tagsets.excelxp close;
>
|