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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
rhl94
Advocate III
Advocate III

Filter table based on multiple OR statement across multiple columns

Hi

 

I want to calculate a filtered table based on if one of the three conditions are met across multiple columns and table.

 

This formula express what I want, but TRUE/FALSE statement across multiple columns are not allowed. Any way to bypass this?

 

CALCULATETABLE(
         TableA;
                 TableA[Invoice] <> -1 ||
                 TableA[Status] = "Active" ||
                 TableB[Type] = "Public")
)
 
         
 
1 ACCEPTED SOLUTION
v-diye-msft
Community Support
Community Support

Hi @rhl94 

 

I believe you can refer to this post:

https://community.powerbi.com/t5/Desktop/FILTER-on-multiple-tables/m-p/304137 

https://community.powerbi.com/t5/DAX-Commands-and-Tips/Calculate-with-filter-on-multiple-tables/m-p/... 

 

Community Support Team _ Dina Ye
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-diye-msft
Community Support
Community Support

Hi @rhl94 

 

I believe you can refer to this post:

https://community.powerbi.com/t5/Desktop/FILTER-on-multiple-tables/m-p/304137 

https://community.powerbi.com/t5/DAX-Commands-and-Tips/Calculate-with-filter-on-multiple-tables/m-p/... 

 

Community Support Team _ Dina Ye
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

Try like


CALCULATETABLE(
TableA;filter(TableA;
TableA[Invoice] <> -1 ||
TableA[Status] = "Active" ||
TableB[Type] = "Public")
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Can't mix table a and b in a filter function

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.