Jun 30, 2022 08:40 PM
Hi, I can’t find a solution to this:
I have a Lookup field that consists of multiple text values separated by a comma. I’m adding a seperate column to indicate the status based of that Lookup field which should contain of 3 possible values:
Now it seems that AND doesn’t work in combination with FIND.
Has anyone found a solution for this?
Jun 30, 2022 08:49 PM
Hey Joel, think we’re getting hit by the way lookups are formatted
Check this base out
FIND works as expected for linked fields and rollup fields but not for lookups it seems
Jun 30, 2022 09:03 PM
The rollup field worked for me! Thank’s for your support :pray: :blush:
Jun 30, 2022 11:24 PM
FIND works with lookup fields, but you need to turn the lookup field into a string by adding & ""
after the field name like this:
{Lookup Field} & ""
So, to find something in a Lookup field, it would look like this:
FIND("phrase to look for", {Lookup Field} & "")