I've created the following variable: %let mnth_strt_date_d = %sysfunc(putn(%sysfunc(intnx(month, %sysfunc(today()), -1, B )), date9.)); I want to use mnth_strt_date_d as a date filter for a SAS table, but in order to so I need the value to be '01MAY19'd. Right now it is coming back as 01MAY19. How can I add the single quotes and d to mnth_strt_date_d? Thank you!
... View more