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

Filter on record existing in a related table

I have 2 tables: many Stages to each Request. Both tables coming from a SQL database.

In Power BI, I want to allow easy filtering of all the Requests which have a Stage of type 'ABC'.

 

This is the logic I would use in SQL:

select Requests.RequestId
from Requests
where RequestStatus = 'Active'
and exists (select *
                  from Stages
                  where Requests.RequestId = Stages.RequestID
                  and Stages.StageName = 'ABC')

 

The SQL above returns the Request records I'm interested in.

 

My idea is to add a new column to the Request table in Power BI, and allow filtering on that new column.

But I can't work out the DAX syntax for my new column.

My two tables are joined/related in Power BI.

 

Thanks for any help Smiley Happy

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I found one way to solve this. Posting my answer in case it might help someone else ...

 

My new column on the Requests table:

 

Request Has ABC Stage = COUNTROWS(FILTER(RELATEDTABLE(Stages),Stages[StageName]="ABC"))>0

 

This gives a nice True/False value at Request level, for use in filters.

 

Any alternative answers would be gratefully received too Smiley Happy

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

I found one way to solve this. Posting my answer in case it might help someone else ...

 

My new column on the Requests table:

 

Request Has ABC Stage = COUNTROWS(FILTER(RELATEDTABLE(Stages),Stages[StageName]="ABC"))>0

 

This gives a nice True/False value at Request level, for use in filters.

 

Any alternative answers would be gratefully received too Smiley Happy

 

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.