I am trying to save the numeric year as a column based off of a data column.
In a datastep I have
Year = year(Project_Start);
Oddly the year returns blank. In the log there is this line:
NOTE: Invalid argument to function YEAR(1772409600) at line 80 column 9.
Most likely you are dealing with a date-time value instead of date. Try this:
Year = year(datepart(Project_Start));
Or this:
Year=input(put(Project_Start,dtyear4.),4.);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.