SAS Procedures

Help using Base SAS procedures
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.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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