Reputation: 482
I have a list of ID's (e.g. BSAR1, BSAR2).How can I easily add in a space after each BSAR automatically.
Is there a tool/function?
Upvotes: 0
Views: 48
Reputation: 1103
If needing to do this surgically without using find/replace, I would use the below formula where your list of BSAR ID's falls into column A:
In an adjacent cell, such as B1, enter the following:
=SUBSTITUTE(A1,"BSAR","BSAR ")
From there, copy the contents of B1 as far as down you need it.
Cheers.
Upvotes: 2