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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1175 views
  • 0 likes
  • 2 in conversation