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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Divide function with rows and filter total value

Hi,

 

Kindly help me Here! I want below condition to enable in DAX

 

I want Divide function where Numerator needs to be a visible value of each Rows and Denominator needs to be sum  of all Rows with aplly of any filter

 

Example - I have Data like below, and % field need to be below cell Value (D2/D9) - i.e., Row level value divided by Total Value.

Answer will be 21% for E2 

mohanrajg_1-1628720939244.png

But, the problem is, if i apply filter it will not take filtered Total Value for Denominator, Denominator Total Value will be Dynamic (it will change if apply filter ) 

Example:

Ill filter the above Table to Year 2021 only,

Result needed is like below,

Answer will be 35% for the same E2

Denominator - (Total Value) will change dynamically with respect to filter apply and we need to consider the filter context Total value as a Denominator) 

mohanrajg_2-1628721371649.png

 

Please help here.

 

Thanks,

Mohanraj

 

@amitchandak @Fowmy @Jihwan_Kim @Greg_Deckler 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try if, a measure like this can help 

 

divide(sum(Table[Value]), calculate(sum(Table[Value]), allselected(Table)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

3 REPLIES 3
Mohammad_Refaei
Solution Specialist
Solution Specialist

Create a measure like this:

MyMeasure =
DIVIDE (
    SUM ( Table[Value] ),
    CALCULATE (
        SUM ( Table[Value] ),
        ALLEXCEPT ( Table, Table[Year], Table[Month] )
    )
)

Replace Table with your table name.

amitchandak
Super User
Super User

@Anonymous , Try if, a measure like this can help 

 

divide(sum(Table[Value]), calculate(sum(Table[Value]), allselected(Table)))

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Thanks a lot, This works

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.