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

Hi there, when converting dates imported from excel to date9. I am receiving the wrong dates. When reviewing the proc contents, I noticed the format and informat of my imported variable is $10. Does anyone have a suggestion on how I can properly convert the dates to date9.?

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

So you have certain values in your date column that are neither dates nor missing (empty), which causes PROC IMPORT to import that as character. Either fix the values in the spreadsheet, or run a correcting data step on the imported dataset:

data import2 (drop=_date);
set import (rename=(date=_date));
date = input(_date, informat.);
format date date9.;
run;

Insert the fitting informat in place of "informat.".

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

So you have certain values in your date column that are neither dates nor missing (empty), which causes PROC IMPORT to import that as character. Either fix the values in the spreadsheet, or run a correcting data step on the imported dataset:

data import2 (drop=_date);
set import (rename=(date=_date));
date = input(_date, informat.);
format date date9.;
run;

Insert the fitting informat in place of "informat.".

advmsj
Obsidian | Level 7

Perfect, thank you!

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 798 views
  • 1 like
  • 2 in conversation