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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1059 views
  • 0 likes
  • 2 in conversation