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;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 591 views
  • 0 likes
  • 3 in conversation