How do I remove certain word from a string? I have tried to use VBA and replace it with “” but it is not the method I wanted. Is there a way where I can use a for each loop to remove the words in the Name Column?
For example,
I would need to remove: Not Correct, and ,Not Correct from the Name column
Hi you can use a Assign inside a for each and assign the
CurrentRow(“Column”)=System.Text.RegularExpressions.Regex.Replace(CurrentRow(“Name”).ToString, “[,]{0,1}Not Correct[,]{0,1}”, “”).Trim