Forum Discussion
using if(text.Contains) for multiple conditions in Power Query M
- 4 years ago
Anonymous
The correct syntax in Power Query would be as follows. Pay very close attention to the capitalisation as M code is entirely case-sensitive:
if Text.Contains([Product], "AB") and Text.Contains([Product], "CD") then "EF" else //your escape value goes here, like null or "Error" or similarPete
Hi Anonymous ,
I agree with BA_Pete 's solution. Has your problem been solved?
If it is resolved, please mark the helpful reply as an answer, and more people will benefit.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous3 years agoNot applicable
Hi Stephen,
What about in the case where you have two words in one column and you would like the new column to show both separate by a comma under an specific order?
For instance in one colum you could have sizes "small, medium, large" (but you can have the three words in one string of text inside the column) and you would like to have the three words separated by comma and the last by an "and" like "Small, medium and large".
Thank you!
Best
Alvaro