BookmarkSubscribeRSS Feed
gowtham112
Obsidian | Level 7

Hi,

 

I have a column Named  "Date" which is in format YYYY-MM  and they are stored in character value .

I want to convert them into numeric format so that I can create a new variable called "Newdate" to store SAS date value.

 

Thanks in Advance.

4 REPLIES 4
Kurt_Bremser
Super User

You have to make a decision which day to use for an incomplete date.

If that should be the first of the month, do

newdate = input(date !! '-01',yymmdd10.);
format newdate yymmddd10.;
gowtham112
Obsidian | Level 7

Hi  KurtBremser,

 

Thank you very much for your  response!!!  it worked perfectly I really appreciate your help 

 

Again, thanks so much!!

 

Best,

Gowtham

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Dates are stored as number of days since a given time.  So to convert your text into a number SAS needs to be able to calculate how many days since that date there are, and without day value it cannot do this, hence it cannot convert to numeric date.  The same thing happens with times, so seconds since.  Give it a default number, then you can always apply a format - i.e. change the display of the underlying data - to YYYY-MM.

gowtham112
Obsidian | Level 7
Hi RW9,

This is great!!!
Thank you so much!!!
I really appreciate your help

Again, thanks so much!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1611 views
  • 1 like
  • 3 in conversation