How do I convert dates of this form 10/27/2006 to numeric? some dates are 2/2/2006?
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
;
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
;
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.
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?
A number 10/27/2006
What is the desired output?
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.