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.
Hello PowerBI Community, I am stuck on a problem and would be very greatful if somebody could assist me.
Table 1 - Customer List
Table 2 - Order
Table 3 - Fruit Prices
Customer List is linked to Orders based on customer ID
Orders linked to fruit prices based on fruit
I am trying to create a conditional column in the customer list table to determine if the orders created could meet a certain criteria. For example
If an order from the customer contains an apple, OR if they have ordered a fruit with price > 2 then TRUE else FALSE
The end result would be an additional column on the customer list table containing true / false values.
Any help would be massively appreciated!
sample file https://easyupload.io/jcpe8c
Solved! Go to Solution.
You can create a column like
Meets condition =
var filteredOrders = FILTER(
RELATEDTABLE(Orders),
Orders[Fruit] = "Apple" || RELATED('Fruit Prices'[Price]) > 2
)
return NOT ISEMPTY( filteredOrders )
You can create a column like
Meets condition =
var filteredOrders = FILTER(
RELATEDTABLE(Orders),
Orders[Fruit] = "Apple" || RELATED('Fruit Prices'[Price]) > 2
)
return NOT ISEMPTY( filteredOrders )
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.