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
Anonymous
Not applicable

Adjusting percentages based on filter

I have a measure that calculates the percentage of column_numbers based on a selection which works on the total data when using specific boolean type filter based on column_boolean. The measure is as follows:

 

 

 

percentage = (DIVIDE(SUM(data[column_numbers]),CALCULATE(SUM(data[column_numbers]),ALL(data))))*100

 

 

 

However, I also have a column_dates in my dataset. When I select a specific month I want it to display the percentage of that specific month, and not the included records as a percentage of a whole. 

 

Example of dataset:

column_datescolumn_numberscolumn_boolean
Jan1true
Jan2false
Feb3true
Feb4false

Mar

5true
Mar0false

 

Outcome examples:

selection 1: column_dates = all, column_boolean = true

expected outcome 1: 53% (calculation: 1 + 3 + 5 / 15)

 

selection 2: column_dates = Jan, column_boolean = true

expected outcome 2: 33% (1 / 3)

 

selection 3: column_dates = Jan & Mar, column_boolean = true

expected outcome 3: 75% (1 + 5 / 😎

 

With the current measure only selection 1 provides the correct result.

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Anonymous 

pls  try this

Measure = DIVIDE(sum('Table'[column_numbers]),CALCULATE(sum('Table'[column_numbers]),REMOVEFILTERS('Table'[column_boolean])))

pls see the attachment below.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thank you for your answer. Didn't know about the removefilters() function. Will need to do some research on it. 

 

Thanks again.

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




ryan_mayu
Super User
Super User

@Anonymous 

pls  try this

Measure = DIVIDE(sum('Table'[column_numbers]),CALCULATE(sum('Table'[column_numbers]),REMOVEFILTERS('Table'[column_boolean])))

pls see the attachment below.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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.