All
I want to update all observations in dataset with M or F. Prefer to use modify statement but sql works too. Just wan to get the below data step working. It only updates the first obs
data etl.inp_claims_lds2013_2016;
modify etl.inp_claims_lds2013_2016;
if gndr_cd = '1' then gndr_cd ='M'; replace;
if gndr_cd = '2' then gndr_cd = 'F'; replace;
run;
ERROR: No matching observation was found in MASTER data set.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: There were 1 observations read from the data set ETL.INP_CLAIMS_LDS2013_2016.
NOTE: The data set ETL.INP_CLAIMS_LDS2013_2016 has been updated. There were 1 observations rewritten, 0 observations
added and 0 observations deleted.
Feel free to not look at the code I provided.
Did you mean to do this?
if gndr_cd = '1' then do; gndr_cd ='M'; replace; end;
if gndr_cd = '2' then do; gndr_cd = 'F'; replace; end;
Feel free to not look at the code I provided.
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.