Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Output file depends upon no. of times workflow runs while using file upload interface tool

NISHA_373
6 - Meteoroid

I am using file upload interface tool to upload files by multiple users. I want to create workflow in such a way every time a user upload a file and run the analytical workflow, it should store a new output file for that particular user's input. So, for example, if the workflow was run by 5 different users at different time, then my output directory will contain 5 output file.

1 REPLY 1
HomesickSurfer
12 - Quasar

Hi @NISHA_373 

 

Append a date and or time to the filename by using a formula to dynamically recreate the file output path, eg. "C:\Temp\Output_"+DateTimeFormat(DateTimeNow(),'%Y-%m-%d_%H%M%S')+".csv"

Labels