Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
| Field1 | Field2 |
| A | A |
| B | X |
| C | Y |
| D | Y |
Solved! Go to Solution.
Hi @Anonymous
Create a calculated table:
NewTable = FILTER ( Table1, Table1[Field1] = "A" || Table1[Field2] = "A" )
Hi @Anonymous
Create a calculated table:
NewTable = FILTER ( Table1, Table1[Field1] = "A" || Table1[Field2] = "A" )
@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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.