Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Text.Contain in M Query to check if Value Column Contains Consonant

Hello, I need help. I am using a table to create a new column that checks a column named Value for a consonant. If it contains a consonant, the column is true. Otherwise, it is false. The formula w...
  • Vijay_A_Verma's avatar
    Vijay_A_Verma
    1 year ago

    Use this

    List.ContainsAny(Text.ToList(Text.Lower([Value])), List.Difference({"b".."z"}, {"e", "i", "o", "u"}))