cancel
Showing results for 
Search instead for 
Did you mean: 
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
yingyinr
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
yingyinr
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
T-Shirt Design Challenge 2023

Power BI T-Shirt Design Challenge 2023

Submit your creative T-shirt design ideas starting March 7 through March 21, 2023.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors