I have one program (written by someone else) which reads some data, runs some procedures, and in the end generates a new data set (called OUTPUT1).
I want to write a second program that would use this OUTPUT1 as the input. How can I do that?
I use SAS EG. I already "Linked" the OUTPUT1 to the new program, but I don't know how to load the data in the new program.
I am absolutely new to SAS. But I am familiar with many other languages. I need a hint to find the answer!
What kind of program do you need to write? What do you want to do with your data set OUTPUT1?
Data output2;
set output1;
/*add desired code*/
run;
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.