Hello!
I'm trying to schedule my Alteryx workflow so that it uploads a new file for every month, formatted the same way as my template.
Process:
- Each month, my SQL query pulls data from the previous month.
- On April 1st, it would pull all of March 2024. The "Date pulled" column will say 4/1/2024. The file name will be 'User Testing_March 2024' and the sheet name would be March 2024
- On May 1st, it would pull all of April 2024. The "Date pulled" column will say 5/1/2024. The file name will be 'User Testing_April 2024' and the sheet name would be April 2024
I have attached two sample excel documents where the format will be used. This is my template document. I want to make sure the headers are bold, date of birth and date pulled are date format. I also want to make sure the report is always left justified.
Every month, I want it to overwrite to this format so that I don't have to keep going into it monthly to update the format.
I was able to create the below columns using the "Date Pulled" column.
Month/Year = DateTimeFormat(DateTimeParse([Date Pulled], "%Y-%m-%d"), "%B %Y") which gives March 2024.
FileName = 'User Testing_'
FileName + M/Y = [FileName] + [Month/Year] which gives User Testing_March 2024
Any idea how I can accomplish this?