Hi everyone,
I’m working in Make and I need to compare the availability between two sources: one array/string from the person1 and another one from the person2. Each contains multiple time slots, for example:
What I need is to check every value from the person1’s array against every value from the person2’s array, so I can filter only the matches (the common availability).
I already tried using the contains() operator and the “case insensitive” option, but it doesn’t seem to work properly.
Hmm, interesting case.
Is there a way to take the availability of person1 (and person2) and send it back to Monday and ask Monday to do the logic? i would check that option first to have Monday do the heavy lifting.
If that isn’t feasible, you can’t just take the content of one and check against the other. Because if person 1 has
8-9AM, 11-12PM
and person 2 has
8-9AM, 10-11AM, 11-12PM
there will be no match even though they have two common timeslots.
You might have to split and match per day and time. I’m not in a position to test that but a straight string match won’t work.
L