Hi all, When I am trying to get Juneteenth date using SAS Holiday() function no date is returning and I see below error message: Is this a known issue. SAS has any fix. I am using SAS 9.4. Code: DATA test; format Juneteenth_Day mmddyy10.; Juneteenth_Day = holiday('Juneteenth' , 2023); run; Error Message: WARNING: In a call to the HOLIDAY function or routine, the date keyword Juneteenth was not defined using the EVENTDS system option. NOTE: Argument 1 to function HOLIDAY('Juneteenth',2023) at line 34 column 21 is invalid. Juneteenth_Day= _ERROR_=1 _N_=1
... View more