Dear reader, I ran into a small issue..
I want to output date as a visible date in (in this case DATE9.) format and not as a numeric output. The format of AESTDT is DATE9. As an example 01DEC2021
My code for this example is Code: MSG='Onset Date - '||TRIM(AESTDT)||'- is available';
The output is this: Onset Date - 22974- is available
But what I want is Onset Date - 01DEC2021- is available
What can I do? Thanks so much for your help!
Try this
data test;
AESTDT = '01DEC2021'd;
MSG = 'Onset Date - '||TRIM(put(AESTDT, date9.))||'- is available';
run;
Try this
data test;
AESTDT = '01DEC2021'd;
MSG = 'Onset Date - '||TRIM(put(AESTDT, date9.))||'- is available';
run;
Great, this works... Thanks
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.