LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2011, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 7 Jul 2011 19:26:33 -0700
Reply-To:   Jack Hamilton <jfh@STANFORDALUMNI.ORG>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Jack Hamilton <jfh@STANFORDALUMNI.ORG>
Subject:   Re: Looking for ExcelXP feature
Comments:   To: Richard Devenezia <rdevenezia@GMAIL.COM>
In-Reply-To:   <201107061150.p66AmSGn014425@waikiki.cc.uga.edu>
Content-Type:   text/plain; charset=UTF-8

The only way I've found to do it is with a data step - write all the data to an array, and then write the array to excel using the object oriented interface.

A lot of work, but it lets you do things that are otherwise not easy to do -- jfh mobile

Richard Devenezia <rdevenezia@GMAIL.COM> wrote:

With destination tagsets.ExcelXP is there a way I can specify which tab and cell the next output will start at?

This does not work... ---- ods tagsets.excelxp file="%sysfunc(pathname(WORK))\sample.xls.xml" options (sheet_name='one' sheet_interval='none'); ;

proc print noobs data=sashelp.class; run;

ods tagsets.excelxp options (goto='G5') %* <--- anything like this ? ; ;

proc print noobs data=sashelp.class; run;

ods tagsets.excelxp close; ----

Thanks, Richard


Back to: Top of message | Previous page | Main SAS-L page