Hi, I’m currently struggling with filtering for my repeating group.
I have a data type contact with for example 3 fields: firstname, lastname, company.
I’ve an input field (not search field). I want to find entries based on that at least 1 of the 3 fields should contain the searched term.
If I type ‘A’, I want to show all entries with A in firstname or lastname or company.
Also, I don’t want case sensitivity. My idea for searching on 1 field was using an advanced filter:
“The contact’s : lowercase contains Input SearchBox’s value: formatted as text:lowercase”
But unfortunately, this does not work b/c of a syntax error (and would only work for search on one field, not 3 at a time).
So: What is the correct way of doing this? Don’t think I’m the first with this kind of problem.
Thanks a lot :))