BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
arunmmw
Fluorite | Level 6

Hi,

I am trying to create an excel report that breaks down the records by Name.

E.g.

Name ABC:

Result set 1

Name DEF"

Result set 2:

This code gets me the result set by Name but exports to a multi sheet .xls file. Is there anyway I can put it all into one excel file.

ods listing close;

ods tagsets.ExcelXP BODY ='test.xls'

     style=Printer;

proc sort data=testFinal; by Name; run;

proc report data=testFinal nowd STYLE(REPORT)={Rules=none }

style(header) = {background=#99CCFF font_face=Arial};

  BY Name;

  column START_DATE numberofcall numberofpeople sucessrate Name;

  DEFINE Team_Code_1 / ORDER 'Type' MISSING;

  BREAK AFTER Name/ summarize;

  quit;

ods tagsets.ExcelXP close;

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

options (sheet_interval=none).

Options for the tagset are here: Base SAS: Quick Reference for TAGSETS.EXCELXP Tagset

View solution in original post

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

options (sheet_interval=none).

Options for the tagset are here: Base SAS: Quick Reference for TAGSETS.EXCELXP Tagset

arunmmw
Fluorite | Level 6

Thanks for the tagsets link

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
  • 712 views
  • 0 likes
  • 2 in conversation