hibernian3
New Member
- Joined
- May 2, 2019
- Messages
- 7
Hello,
I have a workbook with 3 sheets, I am trying to copy the first 2 sheets to a new workbook without formulas. Each sheet needs a set range, which is different, can I combine these 2 Macros together?
Sub JointingTracker()
Sheets("jointing Tracker").Copy
Range("A1:P70").Copy
Range("A1").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
Sub CableTracker()
Sheets("Cable Tracker").Copy
Range("A1:P46").Copy
Range("A1").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
I have a workbook with 3 sheets, I am trying to copy the first 2 sheets to a new workbook without formulas. Each sheet needs a set range, which is different, can I combine these 2 Macros together?
Sub JointingTracker()
Sheets("jointing Tracker").Copy
Range("A1:P70").Copy
Range("A1").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
Sub CableTracker()
Sheets("Cable Tracker").Copy
Range("A1:P46").Copy
Range("A1").PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub