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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.