Hello,
I used 4 sql procedures to create 4 tables, and i want to export all this tables in a single excel file but i don't know how !!
is there any thing to merge my 4 table (many colomnes and one row in all of it) before exporting ? if not, how can export it in one excel file ?
If you want to use proc export you can do this way.,
Proc export data= dataset
outfile="location and file name.xlsx"
dbms=xlsx replace; sheet='sheetname';run;
Giving a different sheetname for every new export statement is importnat so it doesnot override the previous one.
repeat this procedure for any number of datasets.. !
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 lock in 2025 pricing—just $495!
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.