Forum Discussion
massotebernoull
Helper I
4 years agoReplace values with text contains
I Have this table USER SCHOOL [email protected] [email protected] [email protected] school4 [email protected] school1 [email protected] school1 [email protected]...
Anonymous
4 years agoNot applicable
Might be easiest to add a column:
= Table.AddColumn(TableName, "Corrected", each if Text.Contains([User], "@school1.com") then "school1" else [User], type text)
--Nate