BookmarkSubscribeRSS Feed
kranikai_2
Calcite | Level 5
Why does

my_date = mdy ('08', '06', '2010');

work perfectly well inside data steps, but inside proc sql, it generates an error message:

ERROR: Function MDY requires a numeric expression as argument 1.
ERROR: Function MDY requires a numeric expression as argument 2.
ERROR: Function MDY requires a numeric expression as argument 3.
3 REPLIES 3
Patrick
Opal | Level 21
MDY requires numeric values as input. Your statement should therefore look like:
my_date = mdy (08, 06, 2010);

The data step seems to be more tolerant but even there you get the following note with you code:

NOTE: Character values have been converted to numeric values

HTH
Patrick
kranikai_2
Calcite | Level 5
> The data step seems to be more tolerant

That's just what I'm wondering. For me, it seems somewhat illogical that rules concerning data types may vary depending on context.

Well, this causes no real practical problems for me, I'm just curious and would like to know why the language has been designed in that way. Plus, I have to remember what is allowed where.
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Suggest you contact SAS tech support with your concern - unless you are merely broadcasting into this digital fjord, not necessarily looking for a response from an audience, comprised mostly of SAS users, not SAS software developers.

Scott Barry
SBBWorks, Inc.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 6375 views
  • 0 likes
  • 3 in conversation