Filter field by another field

Greetings,

I’m building an app for my BIL for his auto repair shop. What I’m trying to do is filter a vehicle list based on the customer that selected.

Customers table has unique ID, Name and other relevant data

Vehicles table has unique ID, Owner (link to customer table), year, make, model and others

“Job” table has a Ref to both of those tables ([Customer] & [Vehicle]).

I tried creating a slice that would run

ANY(Vehicles[Owner]) = [Customer])

I can’t get it to work though…I’m guessing there is a way to do it. I have something similar in another app that filters but it uses a dashboard and two separate tables to accomplish that…I need to do it within the same form, if possible.

Solved Solved
0 2 285
1 ACCEPTED SOLUTION

In Job[Vehicle] column’s valid_if field, enter the expression:

FILTER( Vehicles , [Owner] = [_THISROW].[Customer] )

View solution in original post

2 REPLIES 2

In Job[Vehicle] column’s valid_if field, enter the expression:

FILTER( Vehicles , [Owner] = [_THISROW].[Customer] )

Thanks a bunch! Worked!

Top Labels in this Space