Guys (are there any ladies out there by the way?),
I have a list of objects containing up to 3 keywords (example below, only two were set by user)
[
{token: "stay"},
{token: "sports"},
{token: ""}
]
I need to use them as criteria (dynamic values) to find the matching lists of objects in a document.
IF matching list(s) is/are found, I’d use an Update record
flow function to increment the count by +1 in each relevant list.
IF no matching lists, I’d use the Create record
function to create said list(s) with the 4 property object and a starting count at 1.
After nearly two days, I still have a blank page with the IF function, yet I’ve used a granular method where I address one goal at a time. I know I need to use IS_IN_ARRAY()
, SELECT()
and others of those kinds but I can’t even complete the first formula.
Anyone feels inspired by this challenge? Thanks in advance.