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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

DAX Formula - DIVIDE

Hello, 

 

I need some help with some formula that I can't put in a right way. 

 

I need to have the participation of all categories for sales. I did the DAX formula in the right way for a table without filters. But on the visualizations, when I filter the calculation is not doing the right values. 

 

example: 

 

Water   1000

Wine     2000

Bread   1000

Milk     1500

total    5500

 

My calculation is dividing for water participation 1000/5500, wine participation 2000/5500... but when I put on the visualizations and filtering with one category to see evolution of the participation the result appears 100%

 

Can you help me? 

 

Thank you 

 

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , Try one of the two measures

 

divide(sum(Table[value]), calculate(sum(Table[value]), all(Table)))

 

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

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try one of the two measures

 

divide(sum(Table[value]), calculate(sum(Table[value]), all(Table)))

 

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

Thank you. I was using divide(sum(Table[value]), calculate(sum(Table[value]), allselected(Table))) but no results on filtering and that 1st one is perfect. Thank you 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors