So I want to know what’s the best way to create a logic that looks for data that contains what the user puts in.
What I want to do is allow users to create their own rule for their bank transactions to be automatically categories the way they want.
So the user will type in the text to be search for, and it will pull out the transaction text that is exact or contain it.
I know I can look into a list of things and see if it “contains” a certain thing but that would look for the “exact” thing.
However, this logic in the screenshot seems to be more of a search logic that looks for anything that has the text instead of the exact matching text.
Hopefully it’s clear what I am trying to do. Any idea?