BookmarkSubscribeRSS Feed
nilu10686
Calcite | Level 5

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.

4 REPLIES 4
SASKiwi
PROC Star

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. 

PaigeMiller
Diamond | Level 26

@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.  

--
Paige Miller
ChrisNZ
Tourmaline | Level 20

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.

 

Ksharp
Super User
Same as ChrisNZ:

data have;
retain var1-var1000 1;
run;


data want;
if 0 then set have(keep=var1-var50);
length new_var $ 200 ;
set have;
new_var='NewVariable';
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 4 replies
  • 1260 views
  • 6 likes
  • 5 in conversation