BookmarkSubscribeRSS Feed
Ravikumarkummari
Quartz | Level 8

Good day all,

i have two datasets for example sashelp.class1 sashelp.class2;

now i want to export these two datasets into excel within single work sheet.

sheet1 contains first sashelp.class1 data and under sashelp.class2 data.

your valid comments are welcome.

2 REPLIES 2
RB1Kenobi
Quartz | Level 8

Hello

Tagsets is a good way to export to Excel.  I find it quick to tweak what I know to suit different requirements (e.g. apply formatting).

DDE is another technique but personally I found it a bit slow going as you have to define table ranges and locations specifically.  Worth reading up the coding though as it may prove handy.

I could not attach the file for some reason, so I've pasted an example below for you:

/***** EXCEL OUTPUT *******/

ods tagsets.ExcelXP

path= "###### type pathway here ##"  /* Pathway  ".....\...\..\.."   */

file="two datasets.xls" /* filename wil XLS extention */

style=printer;

ods escapechar="^";

  /* Define the worksheet parameters */

  ods tagsets.ExcelXP

  options(embedded_titles='yes' embedded_footnotes='yes'

  sheet_interval='none'  /* Sheet interval determines whether to print on to the same sheet or a new one. */

  sheet_name="Two datasets"

     zoom='80'

  skip_space='5,0,0,0,3'   /* Determines the number of rows between the two tables. */

  );

  run;

  /* You can embed style elements within the proc print */

  /* Dataset 1 */

  proc print data= sashelp.class

  width=minimum 

  label

  style (data) = [font_face=calibri just=left ]  noobs;

  label  age = "^{style[just=center fontweight=bold] AGE of Pupil}";

  run;title;footnote;

  /* Dataset 2 */

  proc print data= sashelp.fish (obs=100)

  width=minimum 

  label

  style (data) = [font_face=calibri just=left]  noobs;

  run;title;footnote;

ods _all_ close;

ods listing;

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 797 views
  • 0 likes
  • 3 in conversation