Forum Discussion
ThisIsVS
4 years agoFrequent Visitor
Calculate Custom Maximum Value Column
This might be easy. Let's say I've the following Pivot Table. What would be the dax expression to create a measure named "Max" so that i would get the following. i.e If Value ...
tamerj1
4 years agoCommunity Champion
Please try
Amount Max =
CALCULATE (
MAXX ( ALLSELECTED ( TableName[Year] ), [Sum of Sales Amount] ),
KEEPFILTERS ( TableName[Year] )
)