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.);
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.