Forum Discussion
tnarenderr
3 years agoFrequent Visitor
Select max value for dynamic filter
Type Mod Combo Value Tre Com Tre - O G 12681.37 Tre Com Tre - R G 14357.00 Tre Com Tre - R O 11546.18 Tre Com Tre - O B 12883.55 Tre Com Tre - O G 1...
v-henryk-mstf
3 years agoCommunity Support
Hi tnarenderr ,
Try below:
slicer1 = CROSSJOIN(row("slicer","tyep"),VALUES('Table'[Combo]))
slicer2 = CROSSJOIN(row("slicer","type"),VALUES('Table'[Mod]))
result =
CALCULATE (
MAX ( 'Table'[Value] ),
ALL ( 'Table'[Value] ),
ALLSELECTED ( 'Table'[Combo], 'Table'[Mod] )
)
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
tnarenderr
3 years agoFrequent Visitor
Hi Henry,
it is not giving expected results. thanks for your efforts.