Forum Discussion
Vanessa250919
Helper V
3 years agoSum maxx
Hello, I try to have a measure to have a sum for the value for one column . I need in my graph the max value and not a variation value, it's possible ? Thanks in adv.
Vanessa250919
Helper V
3 years agoOk, it's work, but I need to used the max of this measure in my graph to have a steady bar
tamerj1
Community Champion
3 years agoVanessa250919
Max Postal Code for each city? or Max City among all cities? The later would be
NBR_PAR_Max =
MAXX ( ALLSELECTED ( 'Table'[City] ), CALCULATE ( SUM ( 'Table'[NBR_PAR] ) ) )- Vanessa2509193 years ago
Helper V
Max for all cities, in this case I have max for one city
- tamerj13 years ago
Community Champion
NBR_PAR_Max =
MAXX ( VALUES ( 'Table'[Postal Code] ), CALCULATE ( SUM ( 'Table'[NBR_PAR] ) ) ) - Vanessa2509193 years ago
Helper V
I try this measure and I have the same result
- tamerj13 years ago
Community Champion
Vanessa250919
Please provide some sample data along with the expected result.