I am reading the Excel Files from the directory using the following code. It works fine. But I have several sheets in those execl files.
For instance for each excel file based on the products has 2 sheets, P2_abc, P3_abc, P2_xyz, P3_zyz, P2_mnk, P3_mnk and so on.
Can anybody help me how to code Proc Import part so that I can read the sheets using macro?
%macro readin(prod);
%do i=2 %to 3;
PROC IMPORT OUT= P&i_&prod datafile="&drv.\&&read1&i" dbms=excel2007 REPLACE; sheet="P&i_&prod" ; getnames=yes;
RUN;
%end;
%mend;
Once the Above reading the file is done then I want to set all the data together as below.
data final;
set P2_abc P3_abc P2_xyz P3_xyz ..........;
run;
I would appreciate any help in this.
Thanks
pp
It seems easier to use the LIBNAME Excel engine...?
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.