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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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