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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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 save with the early bird rate—just $795!
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.