I would like to search for a value in another list, if exist then set a variable to Yes otherwise No.
For example, if I have two lists
List 1
Fruit | Cost |
---|---|
Apple | $4/lb |
Banana | $3/lb |
Kiwi | $7/lb |
List 2
Fruit | Color |
---|---|
Apple | Red |
Mango | Yellow |
In List 2, Running workflow in List 2, Apple should return Yes because it exist in List 1 but Mango Should return No
How can this be done?