Here's the code: (hi again btw Frank)
Basically i want selected data from my invoice onto another sheet name
'InvoiceRecords'. The macro works, but if the cursor isnt on cell 'b18
it will start pasting the data where i do not want it to, should
create cell references to the pastes and if so, what do i put?
Sub SaveInvoice()
'
' SaveInvoice Macro
'
'
Range("B18").Select
Sheets("Invoice").Select
Range("C24").Select
Selection.Copy
Sheets("InvoiceRecords ").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Sheets("Invoice").Select
Range("C26").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("InvoiceRecords ").Select
Range("C18").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Sheets("Invoice").Select
Range("C28").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("InvoiceRecords ").Select
Range("D18").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Sheets("Invoice").Select
Range("C29").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("InvoiceRecords ").Select
Range("E18").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Range("F18").Select
Sheets("Invoice").Select
Range("F38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("InvoiceRecords ").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Sheets("Invoice").Select
Range("C38").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("InvoiceRecords ").Select
Range("G18").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone
SkipBlanks:= _
False, Transpose:=False
Range("B18").Select
Application.CutCopyMode = False
Selection.EntireRow.Insert
Range("B18").Select
End Su