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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Ari_B
Contributor II
Contributor II

Last Update to Database

Hi everyone! 

I am trying to make a title for a KPI that displays the date and time the database that is contributing the data was last updated.  

I do not want when the data was last loaded onto Qlik Sense but when the database itself was last updated.  

I know that =reloadtime() gives a timestamp for when the data was last loaded into Qlik but I would like to have the update time for the database itself displayed.  

Is there any way to do this as a function in the Title? 

Thank you! 

Labels (2)
1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

I typically address this requirement by displaying the latest transaction time for the type of data I am displaying. Something like:

='Orders as of ' & TimeStamp(Max({1} OrderDateTime))

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

I typically address this requirement by displaying the latest transaction time for the type of data I am displaying. Something like:

='Orders as of ' & TimeStamp(Max({1} OrderDateTime))

-Rob

Ari_B
Contributor II
Contributor II
Author

Hey,

This works wonderfully! 

Thank you very much!