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

How can I create a measure that gives me the totals of a set of values that are being filtered?

Hello,

 

Is there a way to write a measure that would be the total of a specific field of data without its filter and without removing that filter, that is currently filtered? (sorry if that was confusing)

 

For example please see below.

 

dillontoramall_0-1620231632107.png

 

The values in PercentRespTestNumerator are correct. However, I need all the values in New Denominator to equal the total of 674.75, 161 and 887. In that way, my other line (not shown) can calculate 674.75/sum , 161/sum, 887/sum, to give me a percentage.

 

Is this a way to do this? Thanks in advance.

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

I think you might want use ALLEXCEPT function or ALL function.

 

Here's a simple sample.

ALL function = CALCULATE(SUM('Table'[Value]),ALL('Table'))
ALLEXCEPT function = CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[User]))

15.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

I think you might want use ALLEXCEPT function or ALL function.

 

Here's a simple sample.

ALL function = CALCULATE(SUM('Table'[Value]),ALL('Table'))
ALLEXCEPT function = CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[User]))

15.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

amitchandak
Super User
Super User

@Anonymous , not very clear

Denominator =

calculate([PercentRespTestNumerator], allselected(Table))

Anonymous
Not applicable

Hi, in an attempt to be more clear. I have the following measure:

 

NewDenominator = (sum(Data[Employee Hours]) - (CALCULATE(SUM(Data[Employee Hours]), fVariableData[JobType] = "WorkJob1") + CALCULATE(SUM(Data[Employee Hours]), fVariableData[JobType] = "WorkJob2")))
 
This gives me the correct total of lets say 5000. Now this data is filtered by specific department. I want to make it that when I create a table and list the numerator and denominator out, the numerator has its values per department, but the denominator has that fixed 5000 value. The numerator is displaying what I want, the denominator is not.
 
dillontoramall_0-1620235762604.png

 

 
 

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.