john tempest
Board Regular
- Joined
- Nov 20, 2005
- Messages
- 59
This code is attached to a button and works ok the first time the button is pushed. I would like the button on the second time to paste into C4 and then onwards to C33.
Thank you John
VBA Code:
ActiveSheet.Unprotect
Range("P4:R4").Select
Selection.Copy
Range("C3").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Thank you John