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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Setosa
Advocate I
Advocate I

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
    )
)

 

 

 

 

 

3 REPLIES 3
Setosa
Advocate I
Advocate I

Hi,
the code below also works for me but when i try to enter the filter argument, seems it is not doing the multiplication properly. 
SUMX(facttable,
            factable[Amount]*RELATED(_slicertable[RateCol1])) 

Hi, @Setosa 

In another post based on the data you provided:

vjianpengmsft_0-1709026647553.png

vjianpengmsft_1-1709026667278.png

I tested adding filter conditions in summarize

vjianpengmsft_2-1709026825593.png

After I added the condition it worked fine:

vjianpengmsft_3-1709026906287.png

vjianpengmsft_4-1709027006500.png

Additionally, I created a measure based on the DAX you provided which correctly returns the result of the multiplication:

vjianpengmsft_5-1709027184182.png

 

Can you describe in detail what you are unable to do by adding the filter argument? 

 

 

 

 

 

How to Get Your Question Answered Quickly

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

Best Regards

Jianpeng Li

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

 

 

 

Jonvoge
Super User
Super User

Hi Setosa.

 

What is the unexpected result? Consider uploading some screenshots or a sample .pbix, along with your expected result, for better help.

_____________________________________________________
I hope my comment was helpful.
If your question was answered, please mark your post as 'Solved' and consider giving me a 'Thumbs Up'.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.