Oct 10, 2024 12:23 PM
Oct 10, 2024 02:50 PM
Hey @Cody_Winchester,
Given that Job Title field is a lookup (array) rather than a string, your formula should convert the array into a string first as the SEARCH formula will only work with strings. Please try the formula below (I've already tested it on my side).
SEARCH(",", ARRAYJOIN({Job Title (from Detail)}))
Oct 10, 2024 03:01 PM
@Mike_AutomaticN , I had thought of this. However, in this instance, it actually isn't an array but a single job title that contains a comma. This is why I was trying to isolate it using the formula. The formula works in the source table, but there seems to be a loop hole when returned through a Lookup field. Maybe it isn't possible in this unique instance to find a comma in a lookup field using SEARCH() or FIND()?
Oct 10, 2024 07:04 PM
As a datapoint, @Mike_AutomaticN 's solution works for both FIND and SEARCH:
Link to base
Oct 13, 2024 03:16 AM
Hi,
Lookup is always array. Even when it has 1 or 0 elements. [1,2,3] or [1] or [] - are arrays.
Usually solution is quite simple, I use CONCATENATE({Field}) or ""&{Field}
I think ARRAYJOIN({Field}) should do the same