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

Hello

I want to use ODC EXCEL in order to export tables into excel.

I want that each table will be in a separate sheet.

There will be 3 sheets: Europe ,Asia, USA.

I also want to ask how sas determine the order of the sheets.

 

proc sort data=sashelp.cars out=cars;
by origin;
run;
proc tabulate data=cars;
class make;
by origin;
var invoice;
table make ALL='TOTAL'  ,invoice=SUM;
Run;
1 ACCEPTED SOLUTION
1 REPLY 1
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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 1 reply
  • 736 views
  • 2 likes
  • 2 in conversation