Forum Discussion
Thilini
6 years agoFrequent Visitor
Help for Maxx dax function error
Hi, I am trying to get Max of fee rate for each stream. I want to get the result as desired max fee highligted in yellow as shown in the table below. I tried this dax calculation: Desired max ...
- 6 years ago
Anonymous
6 years agoNot applicable
Try something like this:
Desired Max Fee =
var _CurrentStream = SELECTEDVALUE('Table'[Program Stream])
var _StreamMax =
CALCULATE(
max('Table'[Fee]),
ALLEXCEPT('Table','Table'[Program Stream]),
'Table'[Program Stream] = _CurrentStream
)
return _StreamMax
Jan
Thilini
6 years agoFrequent Visitor
Hi,
Thank you very much. Appreciate your help.
Kind Regards,
Thilini