I'm trying to check if a value (which comes from a Variable) exists in a SP List.
I tried this, and returned true (I don't know if I used the correct syntax, but it worked!):
If(!IsBlank(LookUp('SPList', Variable = Column,"*"&Variable&"*"))
Now I'm trying to count rows if contains the Variable, but returns 0:
CountRows(Filter('SPList', Column = "*"&Variable&"*"))
How can I workaround that?