Hi, the data have 2 date variables and I wanted to create third one called PPC_closing
data final3;
set final2;
if whichone='decemberppc' then PPC_closing = PPC_CLOSING_EFF_DATE1;
else PPC_closing = PPC_CLOSING_EFF_DATE;
run;
but the result still showing numbers and missing values.
How to make it original date?
Post some sample data?
Is your IF condition not working? If so, check and make sure the case of the word matches exactly.
How does SAS store dates?
Apply a format,
format new_var date9.;
If you want PPC_closing to appear as a date, you need to assign it a proper date format (FORMAT statement).
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.