Hello,
I have written a very simple macro
Sheets("Day Template").Select
Range("A4:E13").Select
Range("E13").Activate
Selection.Copy
Sheets(Sheets.Count).Select
ActiveSheet.Paste
I'm essentially copying and pasting a template by using a macro button. This currently pastes in the last sheet in the work book. I would like it to paste where ever I want it to, (i.e. any sheet and location).
i.e. I select a cell, press the macro button within that worksheet, and it pastes in that cell.
I've tried a few methods including using "thisworksheet" etc.
I'm sure this is very simple but I am fairly new to this.
Thanks for your help!
Oliver