Hi, I have a table like:
| a | b | c |
| a101 | b1 | c1 |
| a102 | b2 | c2 |
| a103 | b3 | c3 |
and will create 3 excel files like:
| table1_b2 | ||
| a | b | c |
| a102 | b2 | c2 |
| table_b1 | ||
| a | b | c |
| a101 | b1 | c1 |
| table_b3 | ||
| a | b | c |
| a103 | b3 | c3 |
how to use macro to create and export tables according to distinct value of column b and create table_&bi,thanks!
You don't need macros.
Something like this works:
data _null_;
set TABLE(keep=B);
by B;
if first.B then call execute ('ods excel .....sheet_name= .... '
|| 'proc print data=TABLE noobs; where B='||quote(B)||';run;'
|| 'ods ..... ');
run;
data _null_;
set TABLE(keep=company);
by company;
if first.company then call execute ('ods excel file="c:\temp.xlsx" sheet_name="sales report" '
|| 'proc print data=TABLE noobs; where company='||quote(company)||';run;'
|| 'ods excel close ');
run;Hi expert ,would you please check where is wrong with the code
1. Missing semicolons
2. You overwrite the same file over and over
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.