We need to know:
1. The predefined columns and row number
2. The name of the sheets we are working with.
I would think you need to create another sheet and on that sheet say Column “A” and then put in the column numbers we are working with and the row number.
Here is a copy of the Macro Code
Sub BookingIn()
'
' BookingIn Macro
'
' Keyboard Shortcut: Ctrl+o
'
Cells(Application.ActiveCell.Row, 2).Select
Selection.Copy
Sheets("Job Bag").Select
Range("F2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("C4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Cells(Application.ActiveCell.Row, 3).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("D4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("C4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("E4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("H2").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("F4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("C17").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("G4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D9").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("H4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D10").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("I4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D11").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("J4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D26").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("K4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D12").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("L4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D13").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("M4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D14").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("N4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D27").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("P4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("H7").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("Q4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D24").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("R4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("D25").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Booking In").Select
Range("S4").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Job Bag").Select
Range("F4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub