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
DAXHeadroom
Frequent Visitor

Need Help with MAXX

The following measure yeilds the maximum Planned Capacity for all years rather than my intended maximum Planned Capacity for a given / single year. For example, the maximum Planned Capacity for 2023 = 28 and the maximum Planned Capacity for 2024 = 26.  This measure always yeilds 28. Can someone help with what I am doing wrong? Thanks. 

 

Planned Capacity Measure = MAXX(
    SUMMARIZE('Planned Capacity Table','Planned Capacity Table'[Year],
"MAXCapacity",
    MAX('Planned Capacity Table'[Planned Capacity])),
    [MAXCapacity]
)
1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @DAXHeadroom ,

 

You can try the following dax:

Planned Capacity Measure =
MAXX(
    FILTER(ALLSELECTED('Planned Capacity Table'),
    'Planned Capacity Table'[Year]=MAX('Table'[Year])),[Planned Capacity])

vyangliumsft_1-1708505460425.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @DAXHeadroom ,

 

You can try the following dax:

Planned Capacity Measure =
MAXX(
    FILTER(ALLSELECTED('Planned Capacity Table'),
    'Planned Capacity Table'[Year]=MAX('Table'[Year])),[Planned Capacity])

vyangliumsft_1-1708505460425.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

DAXHeadroom
Frequent Visitor

@Jihwan_Kim Thank you for the reply. Unfortunatley, this measure yeilds the same result (28 in the example above). 

 

Below is an example of my table. 

 

The table is related to a Date Table (Weekday to Weekday) and I have Year, Month and Weekday Slicers based on the Date Table. Regardless of selection (or deselection) of any/all Slicers, the result is always 28. 

 

Any help is appreciated. 

 

BaseWeekdayPlanned CapacityWeekday NumberMonthYear
ABCTuesday283January2023
ABCTuesday263January2024
Jihwan_Kim
Super User
Super User

Hi,

Please try something like below whether it suits your requirement.

 

Planned Capacity Measure =
MAXX (
    ADDCOLUMNS (
        SUMMARIZE ( 'Planned Capacity Table', 'Planned Capacity Table'[Year] ),
        "MAXCapacity", CALCULATE ( MAX ( 'Planned Capacity Table'[Planned Capacity] ) )
    ),
    [MAXCapacity]
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.