Hi,
Can I ask how to create a sequential number in the data set.
So it looks like this,
ID Seq
A 1
B 2
C 3
D 1
E 2
F 3
G 1
....
Thanks
X = mod(_n_, 3);
Thank you Reeza, this is what I need.
A simple Do-loop;
data want;
do seq=1 to 3;
set have;
output;
end;
run;
data have; input ID $ Seq; cards; A 1 B 2 C 3 D 1 E 2 F 3 G 1 ; run; data want; set have; if n=3 then n=0; n+1; run;
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 save with the early bird rate—just $795!
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.