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

Dax Measure: Dividing Totals Filtered by Slicers

Hello everyone, 

 

I have been trying to find an article/solution to this, if there is any. 

 

I would like to have a card that shows uses the totals that are filtered by two different slicers, as a dividing measure. And when the slicers are selected by dates abnd month, the values from those two resulting slicers, the dax measure will correctly divide the values. 

 

Example: Below I have a table that shows values that are filtered with a fiscal month slicer. 

cyncyn_98_0-1661199595198.png

 Example 2: And I have a week ending date slicer, that will have change the week number everytime a different date is selected. 

cyncyn_98_1-1661199765424.png

cyncyn_98_2-1661199785602.png

Now with the total from the other table when selected on a month, I would like that total divided by the week number filtered. 

 

Below is the Dax Measure I have now.

Per Week Average GM = DIVIDE( [Adjustment $GM plus Total GM$], SUM('Week Calendar Table'[Week of Month]))

 

Thanks! 

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

Hi @cyncyn_98 ,


I guess the slicer containing the [Week end date] field affects the value of the measure [Adjustment ¥ GM plus Total GM$]. You can check it here on the card.

vcgaomsft_0-1661397798687.png

Not sure what the formula is for the measure [adjust $GM plus total GM$], you can try this.

Adjustment $GM plus Total GM$ =
VAR _date_select =
    SELECTEDVALUE ( 'Week Calendar Table'[Week Ending Date] )
VAR _year =
    YEAR ( _date_select )
VAR _month =
    MONTH ( _date_select )
VAR _total =
    CALCULATE (
        SUM ( 'Table'[GM] ),
        FILTER (
            ALL ( 'Week Calendar Table' ),
            'Week Calendar Table'[Year] = _year
                && 'Week Calendar Table'[Month Number] = _month
        )
    )
RETURN
    _total

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

View solution in original post

2 REPLIES 2
v-cgao-msft
Community Support
Community Support

Hi @cyncyn_98 ,


I guess the slicer containing the [Week end date] field affects the value of the measure [Adjustment ¥ GM plus Total GM$]. You can check it here on the card.

vcgaomsft_0-1661397798687.png

Not sure what the formula is for the measure [adjust $GM plus total GM$], you can try this.

Adjustment $GM plus Total GM$ =
VAR _date_select =
    SELECTEDVALUE ( 'Week Calendar Table'[Week Ending Date] )
VAR _year =
    YEAR ( _date_select )
VAR _month =
    MONTH ( _date_select )
VAR _total =
    CALCULATE (
        SUM ( 'Table'[GM] ),
        FILTER (
            ALL ( 'Week Calendar Table' ),
            'Week Calendar Table'[Year] = _year
                && 'Week Calendar Table'[Month Number] = _month
        )
    )
RETURN
    _total

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly -- How to provide sample data

Thank you! @v-cgao-msft 

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.