Hi All,
In an interview of SAS, I have asked this question that In my dataset if I have 1000 variables so I want to create new variable @ 5th place or 50th place what method I should choose?
Any help appreciated.
This is one way:
data want;
retain Var1 Var2 Var3 Var4 NewVar;
set have;
NewVar = "NewVal";
run;
But IMHO it's a dumb question as the position of a variable has no effect on processing or analysis. The only time I reposition variables is to regroup them for browsing in a viewer.
@SASKiwi wrote:
But IMHO it's a dumb question as the position of a variable has no effect on processing or analysis. The only time I reposition variables is to regroup them for browsing in a viewer.
I give extra points for this answer, if I'm asking the question in an interview.
For 50th place, I'd use
data WANT;
if 0 then set HAVE (keep=VAR1--VAR49);
length NEWVAR 8;
if 0 then set HAVE (keep=VAR50--VAR99);
.. normal SAS code ...
run;
but as @SASKiwi said that's not an interesting question.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for 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.