BookmarkSubscribeRSS Feed
knveraraju91
Barite | Level 11

Dear,

 

In my data vdate variable contains the following values.  I used the following code to convert to isodate. But it gives me " Invalid argument to function INPUT function".

Pleas help why.]

I think my code looks ok.

 

 

id              vdate(character)

1               17/Jul/2015                

2

3                UN/Jan/2016

 

 

code; 

 

if vdate  ^= ''  or compress(vdate,'/') ^= : 'UN' then date1=put(input(vdate,date11.),is8601da.);

 

;

           

 

3 REPLIES 3
Reeza
Super User

The log should tell you the offending record which should help you narrow down the issue in your logic. 

 

Also, verify if you want OR or AND

Shmuel
Garnet | Level 18

What you realy meant by: 

        if vdate  ^= ''  or compress(vdate,'/') ^= : 'UN' then date1=put(input(vdate,date11.),is8601da.);

 

is   if   NOT (vdate = ' '  or compress(vdate,'/') = : 'UN' )  then date1=put(input(vdate,date11.),is8601da.);

 

which, after opening the brackets convert into:

     if vdate  ^= ' '  AND  compress(vdate,'/') ^= : 'UN' then date1=put(input(vdate,date11.),is8601da.);

 

Other solution is:    date1=put(input(vdate,?? date11.),is8601da.);

which in case of vdate is not valid then date1 is missing value.

 

 

 

 

Astounding
PROC Star

While I agree with the earlier comments, it might be easiest to understand the observations you are processing if you switched to:

 

if not (vdate in : (' ', 'UN')) then .....;

 

The way you have written the logic, every single observation meets the IF conditions.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1371 views
  • 3 likes
  • 4 in conversation