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 Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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