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

Hi,

 

I have a variable called "Date" which is currently in a CHAR format $15 and the dates are displayed as Jan-18, Feb-18 etc.

 

How do I change this to show a date format, ideally to keep the same format if possible like Jan-18, Feb-18. 

 

I have tried this but the new variable just shows a '.'

 

input(date, yymmn6.) as newdate, 

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Missed a dot:

data have;
  date='Jan-18';
run;
  
proc sql;
  create table want as
  select input(cats('01',compress(date,"-")),date7.) as newdate format=monyy6.
  from have;
quit;

Please note above how simple it is to provide test data, and show code you are using, it saves us guessing.

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

A date has to have all three components, even if you decide to format it to show less than that.  So you need to append a default day value:

input(cats('01',compress(date,"-")),date7.) as newdate format=monyy6, 
KC_16
Fluorite | Level 6
Thanks for the reply. I have tried to use this but I get a syntax error

as newdate format=monyy6,
______
22
76
ERROR 22-322: Expecting a format name.

ERROR 76-322: Syntax error, statement will be ignored.
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Missed a dot:

data have;
  date='Jan-18';
run;
  
proc sql;
  create table want as
  select input(cats('01',compress(date,"-")),date7.) as newdate format=monyy6.
  from have;
quit;

Please note above how simple it is to provide test data, and show code you are using, it saves us guessing.

KC_16
Fluorite | Level 6
Thank you RW9, that has worked. I appreciate your help once again.

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 5031 views
  • 0 likes
  • 2 in conversation