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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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 lock in 2025 pricing—just $495!

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
  • 1081 views
  • 0 likes
  • 3 in conversation