Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello! I was hoping someone could give me some assistance on this. I have taken the template that helps export tables from Qlik into Excel. I had two questions -
Is there anyway to get the "Add Worksheet" block in Excel to add todays date to the sheet?
Current Example:
Sheet Name : Data Listing
Ideal Sheet Name : Data Listing 27May2025
Another question, is there anyway to have it create an excel sheet, rather than having to connect to an already existing one? I'd like to provide these reports monthly, with the excel sheet ALSO having the date of the run in it.
Workbook Name : Data Listing Output
Ideal : Data Listing Output 27May2025
Currently I have to go through, delete all 15 tables, then run my automations since the sheet names are the same and it fails, the date would help with this issue, but ideally it would be better to seperate each set on its own excel sheet.
Thanks
This use case may be better served using Tabular reporting from within an app.
Hi
in script you can use like this ----
LET vToday = Date(Today(), 'YYYYMMDD');
STORE "Your_table_name" [lib://dlpunsr002/"Your_table_name"_$(vToday).csv] (txt);
in Qlik Application Automation
you need to follow the below steps.
Start Block – Begin your automation.
Get Current Date and Time Block:
YYYYMMDDvToday.Run Qlik Script Block (if needed) – Optional, to prepare the table.
Export Table to Excel Block:
"Your_table_name"_{{vToday}}.xlsx
I also not have any live example for you in Qlik Application Automation, but I hope this will work.