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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
sweens78
Creator
Creator

expression to display just highest value on a table

Hi guys I want a do a table where the

Dimension is called 'hospital '

Expression=   

'Count(NEWKEYID)-Count(PatientsNotAssessed_ID)'

 

What expression can I use just to display the highest value on the table

1 Solution

Accepted Solutions
lblumenfeld
Partner Ambassador
Partner Ambassador

If you want to show this in a Text Object (or other object) outside the table then 

Max(Aggr(Count(NEWKEYID)-Count(PatientsNotAssessed_ID), Hospital))

should work. This will give you the maximum value of the formula calculated by Hospital.

View solution in original post

1 Reply
lblumenfeld
Partner Ambassador
Partner Ambassador

If you want to show this in a Text Object (or other object) outside the table then 

Max(Aggr(Count(NEWKEYID)-Count(PatientsNotAssessed_ID), Hospital))

should work. This will give you the maximum value of the formula calculated by Hospital.