Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
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.