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

I have a date field that includes hours/minutes/seconds (e.g., '10SEP2012:0:0:0')dt).  I need the data to include only day/month/year (e.g., '10SEP2012'd instead of '10SEP2012:0:0:0')dt.  I created a new field based on the original date field using a computed column: put(datepart(t1.BirthDate), date9.).  The data looks right, but now I cannot filter using the BETWEEN function because the dates are in a character format.  There has got to be a better and different way to get rid of the hours/minutes/seconds and keep the date in a format that can be filtered as needed.

Thanks for ideas . . .

William

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Just create the new variable as datepart(t1.birthdate) to get a SAS date variable and should work with between and date literals. The "put" is what made it a string result.

View solution in original post

2 REPLIES 2
ballardw
Super User

Just create the new variable as datepart(t1.birthdate) to get a SAS date variable and should work with between and date literals. The "put" is what made it a string result.

LiamRowan
Calcite | Level 5

This appears to work perfectly.  Thanks so much, really appreciated!

Wm

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!

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
  • 801 views
  • 0 likes
  • 2 in conversation