I try to make in Excel PowerQuery the equal Operation to SQL Operation:
SET ColumnA = "Max" WHERE ColumnC = "George"
I know that I can CREATE a new Column with an the M expression
if ColumnA = "Max" then "George" Else "something"
but I don't like to create a third column as I do it again and again.
Any ideas how I could do this ?