I’m trying to figure out a formula for listing records that have have a linked field with the Record
For Example if i have a Post Table with a Customer field that is an Array of customer Id’s such as [‘rec23jia’, ‘rec234i’], I would like to get this record back if the Customer Array field contains the value rec234i
Heres my thought
SEARCH(‘rec234’, ARRAYJOIN({Customer}, ’ '))
but this doesn’t seem to be working. When i do the opposite
SEARCH(ARRAYJOIN({Customer}, ’ '), ‘rec234’), i actually get undefined values, so it’s almost as if the ARRAYJOIN function isn’t doing what i think it’s doing.