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
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
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.