Dear All,
I would like to create NEW dataset from dataset2 if salary >10000 using DATA Step ?
Dataset2:
Thanks a lot in advance for your help.
Regards,
S Ravuri.
data newdata;
set dataset2 (where=(salary>10000));
run;
You may not actually need to create a new dataset as you can use the where clause with procedures as well;
proc freq data=dataset2 (where=(salary>10000));
table <variables>;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest 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.
Browse our catalog!