Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have developed the Qliksense App.
I have a requirement to capture the time when the app was last updated. how do I capture it.
Please provide a solution on this one.
Hi there,
You can find the last time the app was reloaded by using the function 'ReloadTime()'
i.e. in the load script as a variable:
LET LastUpdated = ReloadTime();
Hi,
You will See below in the Main tab of Data Load Editor
SET TimestampFormat='DD/MM/YYYY h:mm:ss[.fff] TT';
Just remove ss from that and keep as below
SET TimestampFormat='DD/MM/YYYY h:mm[.fff] TT';
Regards,
Nikita Deshwal
Hi there,
You can find the last time the app was reloaded by using the function 'ReloadTime()'
i.e. in the load script as a variable:
LET LastUpdated = ReloadTime();
Can you tell me how to format reloadtime() date and time . I do not want seconds
I want date and time(hrs and minutes) . I need to remove seconds
Hi,
You will See below in the Main tab of Data Load Editor
SET TimestampFormat='DD/MM/YYYY h:mm:ss[.fff] TT';
Just remove ss from that and keep as below
SET TimestampFormat='DD/MM/YYYY h:mm[.fff] TT';
Regards,
Nikita Deshwal
Using November 2019 and I have the variable in my app with =reloadtime()... However that only works when I reload manually. It does not work when the app is reloaded from a QMC task. Anyone else have that issue?