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

How do I convert dates of this form 10/27/2006 to numeric? some dates are 2/2/2006?

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

If I understood it correctly, you need number equivalent to the date then please try this.

data have;

input date mmddyy10.;

format  date mmddyy10.;

date_number=date;

datalines;

10/27/2006

;

View solution in original post

5 REPLIES 5
stat_sas
Ammonite | Level 13

If I understood it correctly, you need number equivalent to the date then please try this.

data have;

input date mmddyy10.;

format  date mmddyy10.;

date_number=date;

datalines;

10/27/2006

;

desireatem
Pyrite | Level 9

I do not understand, the data is imported from excel, the variable name is date.

Just as you said I need number equivalent to the date then please try this.

stat_sas
Ammonite | Level 13

What is the type of date variable? Are you looking to convert char date variable into numeric or just need to know number which represents 10/27/2006?

desireatem
Pyrite | Level 9

A number 10/27/2006

stat_sas
Ammonite | Level 13

What is the desired output?

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
  • 5 replies
  • 1739 views
  • 0 likes
  • 2 in conversation