I am pulling comments that end with a date in the following format MM/DD/YYY and I'm trying to pull the dates to create a separate date column. I tried multiple formulas and I'm still not getting an output.
For example:
From the comments below, I am trying to pullout the dates:
- 10 Cans of Soda Safeway 05/10/2015
- 3 pounds of Salmon Whole Foods 06/17/2017
One of the formulas I used is the following:
- SUBSTR(RIGHT(INPUT(t1.CommentsPrinted,32.)), 10.)
Any help would be appreciated.
Thanks,
CJ
To create a character date, you might try:
scan(t1.CommentsPrinted, -1, ' ')
To create a character date, you might try:
scan(t1.CommentsPrinted, -1, ' ')
Use the SCAN function with a negative index to get the rightmost text and then use the INPUT function with the proper informat to convert the char value to a SAS date value.
Thank You !
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.