Forum Discussion
Maximum Value as KPI
- 5 years ago
Hi, Anonymous
Please check the below.
The Highest Value Name =
CALCULATE (
MAX ( 'Table'[Name] ),
FILTER ( 'Table', 'Table'[Value] = MAXX ( 'Table', 'Table'[Value] ) )
)Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
- 5 years ago
Hi, Anonymous ;
you could create a measure as follows:
Maximum KPI = CALCULATE(MAX('Table'[Name]), TOPN ( 1, 'Table', 'Table'[Value], DESC ))The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Anonymous ;
you could create a measure as follows:
Maximum KPI = CALCULATE(MAX('Table'[Name]),
TOPN (
1,
'Table',
'Table'[Value], DESC
))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous4 years agoNot applicable
Do you have any suggestion what to do in case two Names, lets say A & B have the same value, and their value is the higest of all?