Hello everyone !
I am tugging on my hair so bad rn.
I have turned the Internet upside down and nothing came out of it.
Can we filter a "Get items" action from SharePoint connector to " Column does NOT contain String" ?
What I have :
I have a list called "Choices_Workload" of several choices for answers, which can be changed anytime.
I will always have 1 "generic" answer in this list set to Title = "🚫 - No Answer". This item can change its ID, so it would be preferable to filter by the title and not the ID. It might change (emoji or no emoji etc) but the "No Answer" will remain.
I want to get all the items from this list, Except for the "🚫 - No Answer".
I have achieved to filter my list with
substringof('No Answer',Title)
This only gets me the generic Answer which is "No Answer", which is the standard and right behavior, so ok.
Now, I want to do just the contrary of this : I want to get every other items EXCEPT for the "No Answer" item.
I tried to filter by:
- not(substringof('No Answer',Title))
- substringof('No Answer',Title) eq false
- substringof('No Answer',Title) neq true
But nothing works.
I would love to avoir filtering the items after the "Get items" action, as it is poor optimization.
But if you tell me it is the only solution, then it is what it is.
Thanks a lot for your insight !