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).
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.