Bolter LAC
Board Regular
- Joined
- Aug 13, 2008
- Messages
- 140
I have a button on Sheet 2 with the following macro.
I want to change this so that cell B3 in Sheet 1 increases by one and not the worksheet with the button. What do I have to add to the code to facilitate this?
Thanks
Code:
Sub Button1_Click()
Range("B3").Value = Range("B3").Value + 1
End Sub
Thanks