fredsunbay
New Member
- Joined
- Mar 27, 2024
- Messages
- 7
- Office Version
- 2016
Good day,
I've got a workbook with 7 identical sheets of date and wrote the below to copy a certain selection from any of the sheets when active.
Sub Copy_Range_To_Clipboard()
ActiveSheet.Range("P12:DJ199").Copy
End Sub
I'm looking for a code to paste the selected data on any of the other 6 sheets in the same location, regardless of the sheet selected.
Meaning - run the above code, select the sheet, than run a macro which will paste the copied data in the active sheet.
Most of the codes I've found will paste the data on one specified sheet only.
Any suggestions?
I've got a workbook with 7 identical sheets of date and wrote the below to copy a certain selection from any of the sheets when active.
Sub Copy_Range_To_Clipboard()
ActiveSheet.Range("P12:DJ199").Copy
End Sub
I'm looking for a code to paste the selected data on any of the other 6 sheets in the same location, regardless of the sheet selected.
Meaning - run the above code, select the sheet, than run a macro which will paste the copied data in the active sheet.
Most of the codes I've found will paste the data on one specified sheet only.
Any suggestions?