Hi everyone,
I'm trying to create a column which checks if two other columns contains some expressions. So I tried to create that column, this is how it looks like:
Column = if(AND(Text.Contains([Column1], "something"), Text.Contains([Column2], "anything"))) then "result" else "other"
But it is not working for me, and I have no idea why, and I couldn't find any solution for it.
This is the error message I got:
Expression.Error: The name 'AND' wasn't recognized. Make sure it's spelled correctly.
Anybody has any idea how to solve it/make it right?
Thanks in advance.