Hi there,
I have a dataset saved in a permanent library, I want to use proc export to export dataset into an excel file. That excel file is a template so there are some title/date at the very top of the sheet. I want to export my dataset starting row 7 for example. My code looks like:
PROC EXPORT DATA = perm.dataset
dbms=xlsx
outfile= "&libnm./&file." label REPLACE;
sheet="data";
RUN;
Is there any options in proc export to allow me to do that?
PS: This is an auto-process without any manual work.
Thanks a lot.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.