Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Conditional Show corresponding to field value in related table

On a list box I only want to show the Field values that have another field value associated to them.

Table ATable B
IDNameNameInput
1AAYes
2BBNo
3CC
4DD

For Example from the above tables I create a list box in a Sheet with ID and Name, I only want it to display those IDs that have a value in Input field in table B

1 Solution

Accepted Solutions
Not applicable
Author

write an expression in the list box instead of column . Assuming that Table A and B are associated with Name column.

if(len(input)>0, ID)

View solution in original post

4 Replies
Not applicable
Author

write an expression in the list box instead of column . Assuming that Table A and B are associated with Name column.

if(len(input)>0, ID)

afurtado
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi

like Eddie Morah but other expression

=if(Input <> '',ID)

2014-11-22 21_03_33-.png

Best,

Alessandro Furtado

furtado@farolbi.com.br
afurtado
Partner Ambassador/MVP
Partner Ambassador/MVP

but thinking better it depends about your data.  Like Eddie Morah will works everytime  (using len).....

Alessandro Furtado

furtado@farolbi.com.br
Not applicable
Author

Thanks guys was very helpful