Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
POSTAL_CODE NBR_PAR
1000 2
2000 4
3000 2
In my graph in need the sum 8 and not the maxx 4 .
@Vanessa250919
Is [NBR_PAR] a column in the sorce table or a measure?
What are you slicing by in the graph? Aea, city, date, month?
is an column .
city in graph .
@Vanessa250919
It should work. Double check the data type of the 'Table'[NBR_PAR] column. It has to be a number not a text.
You may also create a measure
NBR_PAR_Measure = SUM ( 'Table'[NBR_PAR] )
Ok, it's work, but I need to used the max of this measure in my graph to have a steady bar
@Vanessa250919
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] ) ) )
Max for all cities, in this case I have max for one city
NBR_PAR_Max =
MAXX ( VALUES ( 'Table'[Postal Code] ), CALCULATE ( SUM ( 'Table'[NBR_PAR] ) ) )
I try this measure and I have the same result
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |