Hello to everyone.
I have done a workflow where my final output has a name like this:
Output_07_06_2022
the formula that I´m using to accomplish that is the following.
"C:\\Output_"+DateTimeFormat(DateTimeNow(),"%d_%m_%Y")+".xlsx|TAB1"
but What I need is the file with a name like this
"Output – Month 2022" by month meaning by name and not by number (May, June, July)
Thank You.
Solved! Go to Solution.
Hi @neromerob
The formula should be this:
"C:\\Output_"+DateTimeFormat(DateTimeNow(),"%B %Y")+".xlsx|||TAB1"
Please mark as a solution if this solves your issue to help other community members out!
thank you it worked