Forum Discussion
Anonymous
2 years agoNot applicable
Removing unexpected text from a column
Hello, I have a column which contains a number of different word values that repeat numerous times down the column. Sometimes there's instances where the these words have extra text at the end...
- 2 years ago
Hi Anonymous
Why not try a custom column
if Text.Contains([Status], "Backlog") then "Backlog else if Text.Contains([Status], "Archived") then "Archived" else [Status]Thanks
Joe
If this post helps, then please Accept it as the solution
JoeBarry
2 years agoSolution Sage
Hi Anonymous
Why not try a custom column
if Text.Contains([Status], "Backlog") then "Backlog else
if Text.Contains([Status], "Archived") then "Archived" else [Status]
Thanks
Joe
If this post helps, then please Accept it as the solution