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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
kdixon5490
Helper III
Helper III

Dax calculation not working with Filter or Row data.

I'm rather new to Power BI so please be patient with this question.

 

I have a data table that has the followoing columns.

Date            <Date>,

Dynamic       <Int>,

Sold            <float>,

Attendance <float>,

Percentage   <float>

 

With data that looks like

Date               Dynamic                        Sold                      Attendance            Percentage

12/05/2023          1                              399                            808                          49.38

12/05/2023           0                             146                            267                          54.68

Total                                                     545                           1075                         104.06

 

I want the total percentage to always be 100% but I'm not sure what I'm doing incorrectly.

 

I did this calculation inside of SQL before pulling the data but I understand that may not be the best way.

 

Because I currently have 2 slicers on the page 1 for Date and 1 for Dynamic pricing .

 

Any help would be appreciated.

 

 

 

                                                             

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@kdixon5490 , if you need % of total of sold
a new measure =
Divide(Sum(Table[Sold]), calculate(sum(Table[Sold]), allselected()) )

 

or % of total attendance

 

Divide(Sum(Table[attendance]), calculate(sum(Table[attendance]), allselected()) )

 

Power BI Percent of Total and Percent of SubTotal: https://www.youtube.com/watch?v=cN8AO3_vmlY&t=24270s

 

 

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@kdixon5490 , if you need % of total of sold
a new measure =
Divide(Sum(Table[Sold]), calculate(sum(Table[Sold]), allselected()) )

 

or % of total attendance

 

Divide(Sum(Table[attendance]), calculate(sum(Table[attendance]), allselected()) )

 

Power BI Percent of Total and Percent of SubTotal: https://www.youtube.com/watch?v=cN8AO3_vmlY&t=24270s

 

 

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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