I am using EG and PROC SQL to pull the YEAR from a Date field.
So I used:
YEAR(Field_Name) AS BID_YEAR
did the same thing for MONTH, however I am getting this error:
NOTE: Invalid argument to function YEAR. Missing values may be generated.
NOTE: Invalid argument to function MONTH. Missing values may be generated.
So, how does this need to be written?
Your date variable is probably a SAS datetime, and not a SAS date. Try YEAR(DATEPART(field_name)) as BID_YEAR;
Yes, it is coming from an access db, and I checked, it is a date field and there are dates in the tbl. I even went back to make sure I was using the correct syntax and I am
MONTH(BD.BID_DATE) AS BID_MONTH
So I am at a loss...
Your date variable is probably a SAS datetime, and not a SAS date. Try YEAR(DATEPART(field_name)) as BID_YEAR;
As I was thinking about it, I had to do that for another calculation, so that was the issue! Thank you!!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.