Macro for copying named range to any sheet

C

Cutter

I'm looking for help in writing a macro to copy a named range of cell
(1 row by 12 columns named "Scores") on Sheet 1 of my workbook an
paste it in the active cell on any sheet from Sheet 3 to 7.

I plan to put a button on each of Sheets (3-7) and execute the macr
after making the appropriate target cell active. I know I could writ
a separate macro on each of the target sheets but is there a way t
write one macro that will do the job from each sheet and assign th
same macro to each button
 
R

renegan

Sub Test()

Range("Scores").Copy
ActiveCell.PasteSpecial (xlPasteValues)

End Sub

If you activate the cell and run this macro with a button, it shoul
work as you like for every worksheet
 
R

renegan

Sub Test()

Range("Scores").Copy
ActiveCell.PasteSpecial (xlPasteValues)

End Sub

If you activate the cell and run this macro with a button, it shoul
work as you like for every worksheet
 
R

renegan

Sub Test()

Range("Scores").Copy
ActiveCell.PasteSpecial (xlPasteValues)

End Sub

If you activate the cell and run this macro with a button, it shoul
work as you like for every worksheet
 
R

renegan

Sub Test()

Range("Scores").Copy
ActiveCell.PasteSpecial (xlPasteValues)

End Sub

If you activate the cell and run this macro with a button, it shoul
work as you like for every worksheet
 
G

Gary

I have a sheet which does something simular, see attached (hopefully
it gets to you)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top