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

I know this is a basic request (I'm a relatively new SAS user), but I keep getting the following error message:

 

ERROR: Invalid date/time/datetime constant '08/31/2010'd.

ERROR: Invalid date/time/datetime constant '03/01/2011'd.

ERROR: Syntax error while parsing WHERE clause.

 

This is my code:

data caperfy11mo01_07;

set caper.caperfy11mo01_12;

where ('08/31/2010'd < encdate1 < '03/01/2011'd);

run;

 

encdate1 is formatted mmddyy.10 in caper.caperfy11mo01_12; and when I look at the data, the values for encdate1 appear as I've written them in the code.

 

Any help is greatly appreciated. Thank you.

 

 

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

where ('08/31/2010'd < encdate1 < '03/01/2011'd); is attempting use date literals. SAS requires literals to be ddMONyy or ddMONyyyy

use

where ('31AUG2010'd < encdate1 < '01MAR2011'd);

View solution in original post

3 REPLIES 3
ballardw
Super User

where ('08/31/2010'd < encdate1 < '03/01/2011'd); is attempting use date literals. SAS requires literals to be ddMONyy or ddMONyyyy

use

where ('31AUG2010'd < encdate1 < '01MAR2011'd);

cgray
Fluorite | Level 6
Thank you for this solution. I've battled my program for 30 mins now...
sophie3
Calcite | Level 5

I have the same problem but your solution doesn't work. 

 

where=('01MAI2011'd <= Date_decision_octroi <= '30AVR2012'd)

 

Date_decision_octroi is mmddyy10.

 

 

 

 

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
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
  • 37842 views
  • 7 likes
  • 4 in conversation