BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Tushar
Obsidian | Level 7

Hi maybe its silly question still i want to know,

I have dataset called test having variable name with value abc so now i want to change the value from abc to xyz using only datastep and no proc. How can i do that.

i have below one (one observation and one variable only)

name         

====

abc

and i want below one using only datastep no proc how can i do that?

name

====

xyz


Regrads,

Tushar J

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

you probably have more conditions, but since you haven't stated them the following does what you'd want...

data test2;

set test;

name="xyz";

run;

View solution in original post

3 REPLIES 3
Reeza
Super User

you probably have more conditions, but since you haven't stated them the following does what you'd want...

data test2;

set test;

name="xyz";

run;

barheat
Fluorite | Level 6

If you have a number of records you may want to change the name only when it is abc.

data test2;

  set test;

  if name='abc' then name='xyz';

run;

Tushar
Obsidian | Level 7

Thanks Reeza and barheat  it worked.

Regards,

Tushar Jagtap

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