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

Multiple Filters into DAX Calculation

Hi,

I have a data set like below.

CummulativeSum.PNG

 

I want to create measures Sum,Qty Contribution, Commulative Contribution. Here Sum is total of Item Qty for each slicer. Qty Contribution is weightage of that to total sum. i.e. Item Qty/Sum. Commulative Contribution is Cummulative Sum of Contribution. 

 

Here challenge is bringing Slicer and Key into filter context. I can bring Slicer into filter context using SelectedValue function. But how to bring Key into filter context. Please help me to generate this calculation.

 

Thanks in Advance,

Rajesh S Hegde

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @hegde86 

Create measures

sum = CALCULATE(SUM('Table'[item qty]),FILTER(ALLSELECTED('Table'),'Table'[slicer value]=MAX('Table'[slicer value])))

contribution = SUM('Table'[item qty])/[sum]

clc contribution =
SUMX (
    FILTER (
        ALLSELECTED ( 'Table' ),
        'Table'[slicer value] = MAX ( 'Table'[slicer value] )
            && 'Table'[key] <= MAX ( 'Table'[key] )
    ),
    [item qty]
) / [sum]

Capture6.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
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

You can try

overAll =CALCULATE(sum(Sales[Sales]),ALLSELECTED())

Cont Sales = 
var var1 = CALCULATE(SUM(Sales[Sales]),ALLSELECTED())
return 
DIVIDE(SUM(Sales[Sales]),var1)*100

for running total  refer

https://community.powerbi.com/t5/Desktop/Running-total/td-p/502657

https://community.powerbi.com/t5/Desktop/Cumulative-Total/td-p/43115

 

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.