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

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