Guest_imported
New member
- Jan 1, 1970
- 0
I want to place a button in a excel spreed sheet cell and every time I press the button I want the cell next to it to count how many times the button has been pushed.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub button1_click()
Dim counter As Range
Set counter = ActiveSheet.Shapes("Button 1").TopLeftCell.Offset(0, 1)
counter = counter + 1
End Sub