Forum Discussion
vinay_naran
2 years agoFrequent Visitor
Cards - Display OUT Or NOTOUT in Cricket Application
Dear Friends, I am novice to Power BI and try to use CARDS with Player Highest Run and want to show if batter is OUT or NOTOUT (with *). Its working fine in charts, but same logic/measure does not ...
- 2 years ago
Hi vinay_naran - Please check the below measure:
_Max_Run_With_Label =VAR MaxRun = MAX(crick[Runs])VAR IsNotOut =CALCULATE(MAX(crick[Out OR NotOut]),FILTER(crick, crick[Runs] = MaxRun)) = "N"RETURNIF(IsNotOut, MaxRun & "*", MaxRun)This helps.
vinay_naran
2 years agoFrequent Visitor