BookmarkSubscribeRSS Feed
_SAS_
Obsidian | Level 7

Hi all,


I have processed a lot of data in SAS and I need to put out a lot of XLS files for our colleagues who analyze the results. There are about 100 XLS files, each with 30 sheets ... Smiley Mad

 

In each XLS, there are about 5 different sheet types (each sheet type fed by a different SQL) and each XLS contains all sheet types (queries ran for different currencies).

 

I am using SAS 9.4.

 

Do you have any good sugestions how to do the XLS writing? Should I use proc export or some other way might be better?

 

Thanks a lot!

3 REPLIES 3
Reeza
Super User

You're probably going to need a macro but I'd also look into ODS Excel. 

 

There are many examples on here. 

Ksharp
Super User

My favorite is Libname statement:


libname x xlsx 'c:\temp\want1.xlsx';
proc copy in=work out=x;
 select a1-a10;
run; 



ballardw
Super User

I'm somewhat curious about what type of analysis is performed in Excel that can't be done in SAS.

 

Or possibly you're exporting raw data instead of organized summaries?

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 3 replies
  • 1217 views
  • 2 likes
  • 4 in conversation