0

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?

user3234810
  • 482
  • 2
  • 5
  • 18

1 Answers1

2

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.

Derrik
  • 1,053
  • 7
  • 10