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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
dwel0120
Helper III
Helper III

Filter Function across two tables

I have some dummy data in the two tables below.

 

I am trying to build measures with the Table 2 data but I want to filter the results to only include "banana" from Table 1. I am unable to get the filter function to work. These two tables would also be connected in my model. 

 

The goal is to count in the RipeTest column and divide the 1s (numerator) with the total count (denominator) but ONLY the bananas. 

 

 

dwel0120_1-1663684586361.png

 

1 ACCEPTED SOLUTION

I couldn't get it to work. I used KEEPFILTERS and I got it working. 

View solution in original post

4 REPLIES 4
jgeddes
Super User
Super User

Does this get you the result you are looking for?

Ripe Banana Percentage =
var _filteredProduct = "Banana"
var _ripeCount =
CALCULATE(
    COUNT(ripeTable[RipeTest]),
    TREATAS(VALUES(productTable[Product#]),ripeTable[Product #]),
    FILTER(ripeTable, ripeTable[RipeTest] = 1),
    FILTER(productTable, productTable[Product] = _filteredProduct)
)
var _productCount =
CALCULATE(
    COUNT(productTable[Product]),
    FILTER(productTable, productTable[Product] = _filteredProduct)
)
return
DIVIDE(_ripeCount, _productCount, 0)




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

Proud to be a Super User!





I couldn't get it to work. I used KEEPFILTERS and I got it working. 

jgeddes
Super User
Super User

If you are looking for a result like

 

jgeddes_0-1663685715900.png

jgeddes_1-1663685728851.png

I created the two tables you provided, without a relationship between them, and then wrote the following measure

 

Ripe Percentage =
var _ripeCount =
CALCULATE(
    COUNT(ripeTable[RipeTest]),
    TREATAS(VALUES(productTable[Product#]),ripeTable[Product #]),
    FILTER(ripeTable, ripeTable[RipeTest] = 1)
)
var _productCount =
COUNT(productTable[Product])
 
return
DIVIDE(_ripeCount, _productCount, 0)
 
Hope this helps.

 





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

Proud to be a Super User!





@jgeddes I need to filter out the bananas or the product in the measure because ultimately need a bar chart with a measure for each product.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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

Top Solution Authors