I have an excel file in which there are 10 columns with the data starting from:
Text1 | Text4 | Text7
Text2 | Text5 | Text8
Text3 | Text6 | Text9
For my requirement, I have to remove the part Text from all these cells. How is this done in Excel? I am a complete newbie to this.
You can do this directly with your data without formula
Manually
Text, leave ‘Replace With’ blankVBA
Selection.Replace "Text", vbNullString, xlPart