Am trying to create unique row values depending on a numeric value. like If x=6, create 6 unique rows in a dataset. Any help is appreciated.
Have you tried something simple and direct like:
data want;
set have;
do rownum=1 to x;
output;
end;
run;
Have you tried something simple and direct like:
data want;
set have;
do rownum=1 to x;
output;
end;
run;
It would help to provide some example of what other values may be involved.
Basically
Data want;
x=6;
do i=1 to x;
output;
end;
run;
will generate a given number of additional records based on the value of a variable. If the Variable X is a data set and is used on a SET statement then you will get additional records with the same values for all the other variables (except i).
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.