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.
解決済! 解決策の投稿を見る。
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!