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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Or Logic for multiple fields in filter

In same table, I have two fields with sample value as shown in table. I want to filter data only when

Field1=A OR Fields2 =A.

As understood, the default logic in this case is AND not OR. Please help.

 

Field1Field2
AA
BX
CY
DY

 

 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Anonymous 

Create a calculated table:

NewTable =
FILTER ( Table1, Table1[Field1] = "A" || Table1[Field2] = "A" )

 

View solution in original post

2 REPLIES 2
AlB
Community Champion
Community Champion

Hi @Anonymous 

Create a calculated table:

NewTable =
FILTER ( Table1, Table1[Field1] = "A" || Table1[Field2] = "A" )

 

Anonymous
Not applicable

@AlB Thanks. I have organizational limitations due to live data source. Is there any way to achieve this only being on level of report without going to data or model?

Just started learning and quite excited. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.

Top Solution Authors