Good morinig,
I have a column contains single letters and another number of repetition n.
I want to create a new column that will take value of letters multiply by n
example.
data have;
input var1 $1 nbr;
cards;
a 3
b 5
c 2
;run;
I want:
data want
var1 nbr nvar
a 3 aaa
b 5 bbbbb
c 2 cc
thank you
Like this?
data have;
input var1 $1 nbr;
cards;
a 3
b 5
c 2
;
data want;
set have;
nvar = repeat(var1, nbr-1);
run;
Like this?
data have;
input var1 $1 nbr;
cards;
a 3
b 5
c 2
;
data want;
set have;
nvar = repeat(var1, nbr-1);
run;
If you don't want to have a variable defaulting to 200 characters, OR you need the result to be longer than 200 you will want to have a LENGTH statement to assign a desired length to the result variable.
data have;
input var1 $1 nbr;
rep=repeat(var1,nbr-1);
cards;
a 3
b 5
c 2
;
run;
repear function should work
data want; set have; nvar=repeat(var1,nbr-1); run;
Thank you for your answer
@mansour_ibrahim Please mark one of the solutions as the answer.
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.