Handling Date Variables in Mail & Deploy Reports
You have a date variable in Qlik (formatted as DDMMYYYY
), but when used in Mail & Deploy, it gets converted into a number. For example, the file output appears as File_45014.xlsx
instead of File_29032023.xlsx
.
Solution:
To resolve this issue, you can modify the expression in Mail & Deploy to ensure the variable retains its date format. Use one of the following expressions in the Expression Field of Mail & Deploy:
If Variable Requires Dollar Expansion in Qlik:
[Datasource].[TEST APP].[Expression].[text(date($(vS_Date), 'DDMMYYYY'))]
Use this if your Qlik variable vS_Date
includes dollar-sign expansion (e.g., $(vS_Date)
).
If Variable Does Not Require Dollar Expansion:
[Datasource].[TEST APP].[Expression].[text(date(vS_Date, 'DDMMYYYY'))]
Use this if your Qlik variable can be directly referenced without dollar-sign expansion.
Steps to Implement:
Open the Report Template in Mail & Deploy Designer:
Update the Expression Field:
Save and Test the Report:
Additional Notes:
Ensure that the vS_Date
variable in Qlik is correctly formatted using the Date()
function before being passed to Mail & Deploy.
Use the preview mode in Mail & Deploy to test changes without generating a full report.
By applying the correct expression in the Mail & Deploy Designer, you can ensure that date variables retain their intended format and are displayed correctly in your report outputs.