BookmarkSubscribeRSS Feed
sambasiva_ravuri_tcs_com
Calcite | Level 5

Dear All,

I would like to create NEW dataset from dataset2 if salary >10000 using DATA Step ?

Dataset2:

Roll numberDobSalaryexperience
111/12/8725002
512/04/5634003
303/06/7912004
204/05/94445604
403/07/99129083
603/07/99129087

Thanks a lot in advance for your help.

Regards,

S Ravuri.

1 REPLY 1
ballardw
Super User

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>;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 825 views
  • 0 likes
  • 2 in conversation