Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ejonesYou'll need the double backslash EVERYWHERE it is in the file path and name. Alternatively you can use a forward slash (/) instead of the backslash.
Note you will need this delimiter between the WinFileLocation and the ExcelName as well. And I am wondering if you need the drive letter as well, I'm guessing it works without it.
So try:
WinFileLocation - \\MyPath\\level2\\level3
ExcelName - Output_File
...
emit
...
,"{{^WinFileLocation^}}" +"\\" + "{{^ExcelName^}}" +str(date()) as "Order File Name"
OR (combining several changes at once) try:
WinFileLocation - /MyPath/level2/level3
ExcelName - Output_File
...
emit
...
,"C:/{{^WinFileLocation^}}/{{^ExcelName^}}" +str(date()) as "Order File Name"