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
uva0224
Frequent Visitor

Max of a sum measure when using slicer, using dax?

See the pic below:

2100 is the sum of 'total monthly order' over 3 months for a display.

However, some items are not offered in all 3 months, so they don't all 3 rows in the raw data. So the sum caluated 2 month total insead 1350.

Is there any way using DAX to force 2100 on 1350 while keep the flexiablity of the the monthly slicer?

I can solve it in SQL, but not very good in DAX.

Thank you so much!

 

 

uva0224_0-1619645195986.png

 

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

Hi @uva0224 ,

 

Based on your description, I did a test. 

Here is my test table.

v-yuaj-msft_0-1620006591858.png

Then I created a measure as follows.

sum_date =
SUMX (
    FILTER (
        ALL ( 'Table' ),
        [Date] < DATE ( 2021, 4, 1 )
            && [Date] >= DATE ( 2021, 1, 1 )
    ),
    [Value]
)

Result:

v-yuaj-msft_1-1620006685549.png

You could add "ALL()" function before the table and specify the scope of date to limit the rows to be calculated.

Is the result what you want?

 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please share some sample data and the expected result to have a clear understanding of your question? I can do some tests for you.

You can save your files in some cloud sharing platforms and share the link here. (screenshots are as well)

How to provide sample data in the Power BI Forum - Microsoft Power BI Community

 

Best Regards,

Yuna

View solution in original post

2 REPLIES 2
v-yuaj-msft
Community Support
Community Support

Hi @uva0224 ,

 

Based on your description, I did a test. 

Here is my test table.

v-yuaj-msft_0-1620006591858.png

Then I created a measure as follows.

sum_date =
SUMX (
    FILTER (
        ALL ( 'Table' ),
        [Date] < DATE ( 2021, 4, 1 )
            && [Date] >= DATE ( 2021, 1, 1 )
    ),
    [Value]
)

Result:

v-yuaj-msft_1-1620006685549.png

You could add "ALL()" function before the table and specify the scope of date to limit the rows to be calculated.

Is the result what you want?

 

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please share some sample data and the expected result to have a clear understanding of your question? I can do some tests for you.

You can save your files in some cloud sharing platforms and share the link here. (screenshots are as well)

How to provide sample data in the Power BI Forum - Microsoft Power BI Community

 

Best Regards,

Yuna

uva0224
Frequent Visitor

Help. please! thx

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.