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>;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
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!