BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
zdassu
Quartz | Level 8

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User
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.

View solution in original post

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26
data want;
  set have (rename=(systemdate=todaysdate));
  format todaysdate ddmmyy10.;
run;
Oligolas
Barite | Level 11

Hi,

 

DATA have;
   systemDate="10AUG2006"d;
   format systemdate yymmdd8.;
RUN;

DATA want;
   SET have(rename=(SystemDate=Todaysdate));
   format Todaysdate DDMMYY10.;
RUN;
________________________

- Cheers -

Kurt_Bremser
Super User
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.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 2187 views
  • 0 likes
  • 4 in conversation