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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Setosa
Advocate I
Advocate I

How to Filter in Summarize in Dax

I have a dax code as follows and I need to add a filter argument but somehow the result is coming unexpected. 

 

 

 

 

VAR CurrencyAmounts =
 SUMMARIZE(
    FILTER(facttable, facttable[COL] = "abc"),
                facttable[Currency], 'facttable'[Amount])

 

 

 

 

 

 

 

Rate_1_Equivalent = 
VAR CurrencyAmounts = SUMMARIZE('Facttable', facttable[Curreny], 'Facttable'[Amount])
VAR USD_Rate_1 = MAXX(FILTER('slicertable', slicertable[Curreny] = "usd"), 'slicertable'[rate_1])
VAR EUR_Rate_1 = MAXX(FILTER('slicertable', slicertable[Curreny] = "eur"), 'slicertable'[rate_1])
VAR CNY_Rate_1 = MAXX(FILTER('slicertable', slicertable[Curreny] = "cny"), 'slicertable'[rate_1])

RETURN
SUMX(
    CurrencyAmounts,
    SWITCH(
        facttable[Curreny],
        "usd", 'Facttable'[Amount] * USD_Rate_1,
        "eur", 'Facttable'[Amount] * EUR_Rate_1,
        "cny", 'Facttable'[Amount] * CNY_Rate_1
    )
)

 

 

 

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Setosa ,

Please try the following methods and check if they can solve your problem:

1.Create the simple table.

vjiewumsft_0-1708911576512.png

vjiewumsft_1-1708911598676.png

2.Create the new measure to filter.

 

Rate_1_Equivalent = 
VAR CurrencyAmounts =
    SUMMARIZE(
        FILTER(facttable, facttable[COL] = "abc"),
        facttable[Currency],
        "TotalAmount", SUM(facttable[Amount])
    )

VAR USD_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "usd"), slicerTable[rate_1])
VAR EUR_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "eur"), slicerTable[rate_1])
VAR CNY_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "cny"), slicerTable[rate_1])

RETURN
SUMX(
    CurrencyAmounts,
    SWITCH(
        [Currency],
        "usd", [TotalAmount] * USD_Rate_1,
        "eur", [TotalAmount] * EUR_Rate_1,
        "cny", [TotalAmount] * CNY_Rate_1
    )
)

 

  1. Drag the measure into the card visual. The result is shown below.

vjiewumsft_2-1708911643212.png

Best Regards,

Wisdom Wu

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

1 REPLY 1
Anonymous
Not applicable

Hi @Setosa ,

Please try the following methods and check if they can solve your problem:

1.Create the simple table.

vjiewumsft_0-1708911576512.png

vjiewumsft_1-1708911598676.png

2.Create the new measure to filter.

 

Rate_1_Equivalent = 
VAR CurrencyAmounts =
    SUMMARIZE(
        FILTER(facttable, facttable[COL] = "abc"),
        facttable[Currency],
        "TotalAmount", SUM(facttable[Amount])
    )

VAR USD_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "usd"), slicerTable[rate_1])
VAR EUR_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "eur"), slicerTable[rate_1])
VAR CNY_Rate_1 = MAXX(FILTER(slicerTable, slicerTable[Currency] = "cny"), slicerTable[rate_1])

RETURN
SUMX(
    CurrencyAmounts,
    SWITCH(
        [Currency],
        "usd", [TotalAmount] * USD_Rate_1,
        "eur", [TotalAmount] * EUR_Rate_1,
        "cny", [TotalAmount] * CNY_Rate_1
    )
)

 

  1. Drag the measure into the card visual. The result is shown below.

vjiewumsft_2-1708911643212.png

Best Regards,

Wisdom Wu

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

 

 

 

 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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