or in a language that human can understand: SEARCH(“SKU”, “1001”)
I get an empty array. I have more then 30 records with 1001 in the SKU column.
What can be the problem?
Nothing about cURL is a language humans can understand. :winking_face: But now that this additional requirement has been exposed, I shall ponder it. In the meantime - I suspect you are experiencing URI encoding issues in your attempt.
Put your field name in curly braces, not quotes.
If your field value is a text string, make sure you put the value in straight quotes, not curly quotes. Also put the string to find first.
If your field value is a number, remove the quotes and use an equation.
SEARCH("1001", {SKU})
or
{SKU} = 1001
Try testing the formula in a formula field in the base to make sure it works.