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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
cdawidow
Helper III
Helper III

TOTALS INCORRECT WHEN USING MAXX

Hi there, 

 

I just need help calculating dynamic totals within Power BI for the following measure shown below .  Essentially, I am calculating the last recorded Average Cost and QTY On Hand across my 3 branches for a specific product ( TXWHSE) to get my Inventory Value.  But by  using MAXX I know why my totals are based on the MAXX value but my desired output is to SUM the total inventory Values across all 3 of my branches as my total amount.  In this case, it should show $52,455.15 .  How would I go about doing that ? 

 

MAXX1.PNG 

1 REPLY 1
Jos_Woolley
Solution Sage
Solution Sage

Hi,

INVENTORY VALUE =
VAR LASTQ0H =
    CALCULATE (
        MAXX ( INTRAN00, INTRAN00[TXQOH] ),
        LASTDATE ( INTRAN00[TRANSACTION DATE] )
    )
VAR LASTAVGCOST =
    CALCULATE (
        MAXX ( INTRAN00, INTRAN00[NEW AC PER] ),
        LASTDATE ( INTRAN00[TRANSACTION DATE] )
    )
VAR MYTABLE =
    SUMMARIZE (
        INTRAN00,
        INTRAN00[TXWHSE],
        "LastQ0H",
            CALCULATE (
                MAXX ( INTRAN00, INTRAN00[TXQOH] ),
                LASTDATE ( INTRAN00[TRANSACTION DATE] )
            ),
        "LastAvgCost",
            CALCULATE (
                MAXX ( INTRAN00, INTRAN00[NEW AC PER] ),
                LASTDATE ( INTRAN00[TRANSACTION DATE] )
            )
    )
RETURN
    IF (
        HASONEVALUE ( INTRAN00[TXWHSE] ),
        LASTAVGCOST * LASTQ0H,
        SUMX ( MYTABLE, [LastAvgCost] * [LastQ0H] )
    )

Regards

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors