Hi, am sure am missing something as this should be something trivial but am struggling to find how to add a suffix with a date to a table name.Does anyone have a way to do this?Thanks
Hi @shan_chandra, that worked perfectly. For my specific case I wanted the previous month as the table name suffix so used the below.# import datetime module
import datetime
# get current date
curr_date = datetime.date.today()
# get first day of cur...