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
CJDK
Helper II
Helper II

Cumulative Flow Diagram - cost by country

I am a DAX-newbie. I have a measure that accumulates column Total cost, USD by column Month Year, but I want to extend it to also accumulate by column Country for use in a cumulative flow diagram.

 

The following is an example (unrelated data in R Shiny) of what I am trying to emulate.

 

CJDK_1-1613121223834.png

I have tried the following code, but it gives error message "Too few arguments were passed to the filter function".

 

 

CumulatedSupplies2 =
CALCULATE(
SUM(Query2[Total cost, USD]),
FILTER(ALLEXCEPT(Query2,Query2[Country],Query2[Month Year]<= MAX(Query2[Month Year])))

 

 

 Many thanks in advance for guidance!

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @CJDK ,

You missed a closing parenthesis in your measure, you can use DAX Formatter to check whether there are any syntax error in measure, calculated column or calculated table.

CumulatedSupplies2 =
CALCULATE (
    SUM ( Query2[Total cost, USD] ),
    FILTER (
        ALLEXCEPT ( Query2, Query2[Country] ),
        Query2[Month Year] <= MAX ( Query2[Month Year] )
    )
)

Best Regards

Community Support Team _ Rena
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

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @CJDK ,

You missed a closing parenthesis in your measure, you can use DAX Formatter to check whether there are any syntax error in measure, calculated column or calculated table.

CumulatedSupplies2 =
CALCULATE (
    SUM ( Query2[Total cost, USD] ),
    FILTER (
        ALLEXCEPT ( Query2, Query2[Country] ),
        Query2[Month Year] <= MAX ( Query2[Month Year] )
    )
)

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
Super User
Super User

@CJDK , Try like

 

CumulatedSupplies2 =
CALCULATE(
SUM(Query2[Total cost, USD]),
FILTER(Query2,Query2[Month Year]<= MAX(Query2[Month Year])),ALLEXCEPT(Query2,Query2[Country]))

 

or

 

CumulatedSupplies2 =
CALCULATE(
SUM(Query2[Total cost, USD]),
FILTER(allselected(Query2),Query2[Month Year]<= MAX(Query2[Month Year]) && Query2[Country] = max(Query2[Country])))

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.