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

Hi,

I have a  character variable that has a date string in it, so its not a real date variable but I need to change it to one.  The values look like this.

Apr-01-2015

Apr-05-2015

Mar-05-2015

May-10-2015

I have been trying various of syntax and functions but I haven't been able to figure-out the right combination. This is what I have so far:

 

order_date_new2= input(compress(order_date,'-'), yymmdd8.);

Any help is appreciated!

1 ACCEPTED SOLUTION

Accepted Solutions
arodriguez
Lapis Lazuli | Level 10

Hi,

The syntax that you have use is almost OK. The format yymmdd, as far as I know, need First the year, then month and last Day, if you have dates in that format, I'm sure that is better ways to do it, but I will use Date9

date_real=input(scan(order_date,2,'-')||scan(order_date,1,'-')||scan(order_date,3,'-'),date9.);

View solution in original post

3 REPLIES 3
arodriguez
Lapis Lazuli | Level 10

Hi,

The syntax that you have use is almost OK. The format yymmdd, as far as I know, need First the year, then month and last Day, if you have dates in that format, I'm sure that is better ways to do it, but I will use Date9

date_real=input(scan(order_date,2,'-')||scan(order_date,1,'-')||scan(order_date,3,'-'),date9.);

data_null__
Jade | Level 19

There is an INFORMAT that will work too.  Remember to RTM.

data _null_;
  
x = input('Apr-01-2015',anydtdte11.);
   put x= x=date9.;
  
run;

23         data _null_;
24            x = input('Apr-01-2015',anydtdte11.);
25            put x= x=date9.;
26            run;

x=20179 x=01APR2015

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
  • 3 replies
  • 1659 views
  • 1 like
  • 3 in conversation