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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
coloful_architect
Creator II
Creator II

lock a time field for chart 's title expression

Hi guys,

I have a table chart with a title to show the data load time where is fed by a loaded field of [data load time]

title expression is  '(Data Load Time: ' & Date(([data Load Time]),'MM/DD/YYYY') &')'

 

however the [data load time] does not link to all other associated data fields. so when some unassociated data field is selected, the [data load time] will be gone. 

Is that way like set expression {1} to lock this [data load time] at title expression so that it always show that [data load time]?

 

 

Labels (1)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

As below

=  '(Data Load Time: ' & Date(max({1}[data Load Time]),'MM/DD/YYYY') &')'

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
vinieme12
Champion III
Champion III

As below

=  '(Data Load Time: ' & Date(max({1}[data Load Time]),'MM/DD/YYYY') &')'

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
coloful_architect
Creator II
Creator II
Author

yeah should have thought this workaround. thanks