Hi I have a column called SystemDate with a date format yymmdd8 and the date is being displayed 06-08-10 I would like to rename the column to Todaysdate and have the date format DDMMYY10 10/08/2006. How would I go about changing the format of the date?
data want;
set have (rename=(systemdate=todaysdate));
format todaysdate ddmmyy10.;
run;
If your dataset is large and you do not need to preserve its original status, consider using proc datasets.
data want; set have (rename=(systemdate=todaysdate)); format todaysdate ddmmyy10.; run;
Hi,
DATA have;
systemDate="10AUG2006"d;
format systemdate yymmdd8.;
RUN;
DATA want;
SET have(rename=(SystemDate=Todaysdate));
format Todaysdate DDMMYY10.;
RUN;
- Cheers -
data want;
set have (rename=(systemdate=todaysdate));
format todaysdate ddmmyy10.;
run;
If your dataset is large and you do not need to preserve its original status, consider using proc datasets.
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.