Originally Posted by p45cal Select the cells you want to process first, then try running: Sub blah() For Each cll In Selection.Cells x = Split(cll.Value, "'") x(0) = x(0) & " Equipment" cll.Value = Application.Trim(Join(x, "'")) Next cll End Sub p45cal, this works thank you very much.
Sub blah() For Each cll In Selection.Cells x = Split(cll.Value, "'") x(0) = x(0) & " Equipment" cll.Value = Application.Trim(Join(x, "'")) Next cll End Sub
View Tag Cloud
Forum Rules