Hi, I have currently got a dataset called 'Values'. Please can someone tell me the best code to use for me to overwrite the value in the row where level_description=" ", so that instead of the 0.072129349 that is currently there, I would like it to be 0.104143 instead?
In a data step:
if missing(level_description) then do;
value = 0.104143;
end;
In a data step:
if missing(level_description) then do;
value = 0.104143;
end;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.