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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
till2718281828
Regular Visitor

How to calculate a measure using a drillthrough filter

Hi everybody,

Pretty much often I need to calculate a measure presented below:

 

Drillthrough filters:

'Attribute 2' is "Xxxxx"

 

Attribute 1Attribute 2ValueMeasure
AaaZ100100
AaaXxxxx1010
BbbZ100 
BbbY20 
CccZ100 
CccY10 
DddZ100100
DddXxxxx2020

 

So we need to:

  1. find out the elements of 'Attribute 1' for which 'Attribute 2' is not NULL;
  2. calculate the measure that sum 'Value' for such elements of 'Attribute 1'.

Can someone help with that

Thanks

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee


@till2718281828 wrote:

Hi everybody,

Pretty much often I need to calculate a measure presented below:

 

Drillthrough filters:

'Attribute 2' is "Xxxxx"

 

Attribute 1 Attribute 2 Value Measure
Aaa Z 100 100
Aaa Xxxxx 10 10
Bbb Z 100  
Bbb Y 20  
Ccc Z 100  
Ccc Y 10  
Ddd Z 100 100
Ddd Xxxxx 20 20

 

So we need to:

  1. find out the elements of 'Attribute 1' for which 'Attribute 2' is not NULL;
  2. calculate the measure that sum 'Value' for such elements of 'Attribute 1'.

Can someone help with that

Thanks


@till2718281828

As far as I know, the attributes 2 which is not in the drillthrough filter won't present the the drill through page. You can only get a total sum of the attribute 1 instead of individual sums.

 

Measure =
CALCULATE (
    SUM ( yourTable[Value] ),
    ALLEXCEPT ( yourTable, yourTable[Attribute 1] )
)

Capture.PNG

View solution in original post

1 REPLY 1
Eric_Zhang
Microsoft Employee
Microsoft Employee


@till2718281828 wrote:

Hi everybody,

Pretty much often I need to calculate a measure presented below:

 

Drillthrough filters:

'Attribute 2' is "Xxxxx"

 

Attribute 1 Attribute 2 Value Measure
Aaa Z 100 100
Aaa Xxxxx 10 10
Bbb Z 100  
Bbb Y 20  
Ccc Z 100  
Ccc Y 10  
Ddd Z 100 100
Ddd Xxxxx 20 20

 

So we need to:

  1. find out the elements of 'Attribute 1' for which 'Attribute 2' is not NULL;
  2. calculate the measure that sum 'Value' for such elements of 'Attribute 1'.

Can someone help with that

Thanks


@till2718281828

As far as I know, the attributes 2 which is not in the drillthrough filter won't present the the drill through page. You can only get a total sum of the attribute 1 instead of individual sums.

 

Measure =
CALCULATE (
    SUM ( yourTable[Value] ),
    ALLEXCEPT ( yourTable, yourTable[Attribute 1] )
)

Capture.PNG

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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