Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dynamic naming by date when storing

Hey guys,

I have made a SQL script that I have scheduled daily in the QMC for it to auto generate a daily file.

The syntax is as you might now between getdate()-1 and getdate(). I store this file as a CSV file in the script, and I want it to add the date aswell in the name.

_$(vL.Client)_day.csv (txt, delimiter is ';');

Labels (1)
2 Replies
swuehl
Champion III
Champion III

Maybe like

Let vToday = Today();

...

_$(vL.Client)_$(vToday).csv (txt, delimiter is ';');

Not applicable
Author

Thansk a lot!