Hello Everyone, I am trying to create a column label as a 3-letter month followed by 2-digit year (i.e. Dec-12). I currently use this code: label new_month = "%sysfunc(today(),monname3.)-%sysfunc(today(),year2.)"; The code works as long as I use today(). But I would like to use the 'process_date'(a time stamp date) instead of today(). I have started by trying out the month portion first. And it does not seem to work: label new_month = '"%synfunc(datepart(process_date),monname3.)"; Instead of creating the label 'Dec-12' it is displaying '%synfunc(datepart(process_date),monname3.)' as the label. I get a warning "Apparent invocation of macro SYNFUNC not resolved". Does anyone have any suggestions on how I can make the label to show 'Dec-12' using a timestamp date ? Thank you very munch
... View more