Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hey,
I want to use a filter on a page which uses an OR condition. I have two fields called "JsonTags.area" and "ReservationName". My goal is to display data on the page where "JsonTags.area" is equal "dl-business-intelligence" OR "ReservationName" contains "DWH". I think this will be only possible via new Column or with Measure but would be glad to get some help on it.
Br
Solved! Go to Solution.
Hi, @lkshck
Create a calculated column with the following formula:
Column =
IF (
[JsonTags.area] = "dl-business-intelligence"
|| CONTAINSSTRING ( [ReservationName], "DWH" ),
1,
0
)
Then filter the items at the page filter level for column values equal to 1.
e.g.
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @lkshck
Create a calculated column with the following formula:
Column =
IF (
[JsonTags.area] = "dl-business-intelligence"
|| CONTAINSSTRING ( [ReservationName], "DWH" ),
1,
0
)
Then filter the items at the page filter level for column values equal to 1.
e.g.
Please refer to the attachment below for details.
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Works fine, thank you!
You can simply do this from page filter by draging both the mentioned fields
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
This works only for the same field, right? So If I put the field "JsonTags.area" to the Page filters, I can select advanced filtering and set an OR condition but not between two fields.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.