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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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 ';');

2 Replies
swuehl
MVP
MVP

Maybe like

Let vToday = Today();

...

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

Not applicable
Author

Thansk a lot!