I needed to write a filter that used an OR statement to pull the department values from one explore join (the IN part of the referral) OR the another explore join (the OUT part of the referral). Unfortunately, this functionality just doesn't exist in Looker. I had to find another way. Here's my explore with 5 joins. The last join contains the OR statement: the final solution to this problem. The first 4 joins set up the in and out assignment of departments for both the referral and the revenue from the referral. explore: flatfile { join: referred_to_dept { view_label: "referred to department" from: v_dim_dept type: left_outer relationship: one_to_one sql_on: ${flatfile.referred_to_dept_id} = ${referred_to_dept.branch};; } join: referrers_dept { view_label: "referrer department" from : v_dim_dept type: left_outer relationship: one_to_on...