Hi Syd,
Something like this:
Sub Syd(): Dim E As Range, i As Integer, j As Integer
For Each E In Range("E1:E" & Range("E" & Rows.Count).End(xlUp))
If InStr(1, E, "Joblist") Then
i = InStr(1, E, " "): j = InStr(i, E, " ")
E.Offset(0, 3) = Mid(E, i + 1, j - i - 1)
End If: Next: End Sub
Change the red number to however far you want the offset to be.
Directions for running the routine(s) just supplied
Copy the code to the clipboard
Press ALT + F11 to open the Visual Basic Editor.
Open a macro-enabled Workbook or save your Workbook As Macro-Enabled
Select “Module” from the Insert menu
Type "Option Explicit" then paste the code under it
With the cursor between Sub and End Sub press F5 (F8 to Single Step)
OR
Press ALT + Q to close the code window.
Press ALT + F8 then double click on the macro name
Bookmarks