Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mnemecek23
New Member

Same Y axis based on DAX MAX formula

Hi all,

 

I am trying to build a report which has multiple graphs showing accepted volume at the individual locations in our network.

 

Each graph is filtered down for a specific location and looks something like this:

 

mnemecek23_1-1685536661587.png

In order to show the correct proportion, I need the y-axis to be the same for all locations. Together with a colleague, we thought of using the MAX formula:

 

MAX = CALCULATE(MAX(VW_BI_KPI[ACCEPTED]),REMOVEFILTERS(VW_BI_KPI[LOCATION]))
 
which works fine, but...
 
Each location handles a multitude of different service keys. The above formula works out only if the data is filtered for one service key, but fails when it's two or more (it then gives the maximum accepted value for a single service key). I need two steps:
 
1) SUM of the volume per location across all service keys
2) the maximum of the above figure
 
The underlying data looks like this:
 
mnemecek23_0-1685536621957.png
 
Any suggestions how to achieve this?
 
Many thanks!

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Max Y Axis =
VAR SummaryTable =
    ADDCOLUMNS (
        SUMMARIZE ( ALL ( VW_BI_KPI ), VW_BI_KPI[Location], 'Date'[Date] ),
        "@value", CALCULATE ( SUM ( VW_BI_KPI[Accepted] ) )
    )
VAR Result =
    MAXX ( SummaryTable, [@value] )
RETURN
    Result

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Try

Max Y Axis =
VAR SummaryTable =
    ADDCOLUMNS (
        SUMMARIZE ( ALL ( VW_BI_KPI ), VW_BI_KPI[Location], 'Date'[Date] ),
        "@value", CALCULATE ( SUM ( VW_BI_KPI[Accepted] ) )
    )
VAR Result =
    MAXX ( SummaryTable, [@value] )
RETURN
    Result

Awesome, exactly what I needed! Thanks a lot!!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors