I need to anchor a sheet via a macro without refering to the specific sheet
ie - Sheets("Sheet 1"
.Select
What I need is something like
Dim anchor_sheet
anchor_sheet = ActiveCell.Address
Range(anchor_sheet).Select
Selection.copy
Sheets("HANDOVER"
.Select
Selection.Paste
Range(anchor_sheet).Select
This anchors the cell but not the sheet ie when I refer back to the anchored sheet it goes to the same cell but in the active sheet
ie - Sheets("Sheet 1"
What I need is something like
Dim anchor_sheet
anchor_sheet = ActiveCell.Address
Range(anchor_sheet).Select
Selection.copy
Sheets("HANDOVER"
Selection.Paste
Range(anchor_sheet).Select
This anchors the cell but not the sheet ie when I refer back to the anchored sheet it goes to the same cell but in the active sheet