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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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