BookmarkSubscribeRSS Feed
sas1018
Fluorite | Level 6

hi

I have a birth variable in a dataset which is character type. Now I want to convert into is8601da. format. First I created another variable to change the birth variable to numeric and then use the put function to apply the format. I have tried the below code:

 

birth1=input(birth,anydtdtm20.);
BRTHDTC=put(birth1,is8601da.);

 

birth variable format in the dataset ::::1988-08-29

I got  ********** this for BRTHDTC. What am I doing wrong? Can anybody help me with this.

 

TIA.

2 REPLIES 2
PaigeMiller
Diamond | Level 26
data have;
    birth='1988-08-29';
	birth_numeric=input(birth,anydtdte.);
	format birth_numeric is8601da.;
run;

You can't use informat anydtdtm. because that expects date/time values, and you have only a date value, so you need informat anydtdte. 

--
Paige Miller
ballardw
Super User

Here is a useful reference regarding dates, times and datetimes in SAS.

 

https://communities.sas.com/t5/SAS-Communities-Library/Working-with-Dates-and-Times-in-SAS-Tutorial/... has a PDF with much information about dates.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2 replies
  • 1111 views
  • 0 likes
  • 3 in conversation