BookmarkSubscribeRSS Feed
Saurabh247
Calcite | Level 5

Hi! i'm new to sas.

So if I have a data set, but I want to add a new variable with user defined values, how can I do that?

2 REPLIES 2
Shmuel
Garnet | Level 18

Just define LENGTH and name of the new varaible, then assign the value you want:

 

data want;

  set have;

        length new_var  <$d  or d - where d is length in digits, $ for char variable>;

         new_var = <any value>;

run;

 

or you can use sql:

      

proc sql;

   create tabe want

   as select *,

   <value> as new_var

from have;

quit;

 

RW9
Diamond | Level 26 RW9
Diamond | Level 26

I would suggest you follow the SAS provided video help and read some tutorials.  You create variables in datasteps, applying data is simple, and depends very much on what you want to do, which you haven't told us.  Say I want to create a variable b based on a, 1=a, 2=b then:

data want;
  set have;
  if a=1 then b="a";
  if a=2 then b="b";
run;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2 replies
  • 980 views
  • 0 likes
  • 3 in conversation