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

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