BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I want to delete the last generation of my dataset so that it is not stored in my archives. Using the following code taken from the samples ....

data payroll(genmax=5);
input lname : $15. salary;
datalines;
Huang 50000
Lindstrom 45000
Smith 560000
Jackson 100000
;
run;

data payroll;
set payroll;
salary=salary*1.03;
run;

How can I delete a specific generation ?
Say this was an annual payroll file and I don't want to keep the erroneous one & the good one in the generational history.

Is it as easy as deleting the file with no # next to it (gennum=0)?

Thank in advance ...
1 REPLY 1
deleted_user
Not applicable
Ok tested it myself and simply deleting the dataset in the explorer window works and the generation #s automatically readjust themselves !

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
  • 766 views
  • 0 likes
  • 1 in conversation