BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Q1983
Lapis Lazuli | Level 10

data test;

borrower_dob = 25AUG1947:00:00:00.000000;

BORROWER_DOB1 = BORROWER_DOB;
format BORROWER_DOB1 yyyymmdd10.;

run;

I get the results truncated with a bunch of ........... in the field

Desired result is 19470825

 

1 ACCEPTED SOLUTION
2 REPLIES 2
tom_grant
SAS Super FREQ

data test;

borrower_dob = '25AUG1947:00:00:00.000000'dt;

BORROWER_DOB1 = datepart(BORROWER_DOB);
format BORROWER_DOB1 yymmdd10.;

run;

 

You have to tell SAS it is a datetime value (in-close in quotes & add dt) then use datepart function to pull out the date.  The correct format is yymmdd10.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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