Expression help!

NCD
Silver 2
Silver 2

I have a 

[Product] Table which contains;

โ€ขProduct ID

 

[Size] Table which contains;

โ€ขSize ID

โ€ขProduct column type Ref

 

[BOM] Table which contains;

โ€ขBOM ID

โ€ขProduct column type Ref 

โ€ขSize column type Ref

 

in my [BOM] Tableโ€™s Size column type Ref, I want to write an expression that says,

only show me the sizes that matches this Product ID. So in my drop down menu I wonโ€™t see every size of every product.

 

Tried to figure out myself and didnโ€™t get anywhere close I thinkโ€ฆ

mine was,

 

IF(_THISROW =[Product ID], [Size].[Size ID], BLANK)

 

Can anyone help me out?

Solved Solved
0 2 69
1 ACCEPTED SOLUTION

Aurelien
Google Developer Expert
Google Developer Expert

Hi @NCD 

 

What about that in the Data Validity/Valid_If expression of your Size in the table BOM ?

 

[Product].[Related Sizes]

 

 

View solution in original post

2 REPLIES 2

Aurelien
Google Developer Expert
Google Developer Expert

Hi @NCD 

 

What about that in the Data Validity/Valid_If expression of your Size in the table BOM ?

 

[Product].[Related Sizes]

 

 

Thank you, it worked!!

Top Labels in this Space