duskwood47
New Member
- Joined
- Oct 9, 2017
- Messages
- 28
So I need to create a macro that will increment the cell immedietly to the right of the cell that would have a button to increment by one. I know I could a simple
Public Sub AddOne()
Range("C3").Value = Range("C3") + 1
End Sub
to accomplish what I need however I will have around 10 buttons total and dont want a different macro for each one.
Help please!
Public Sub AddOne()
Range("C3").Value = Range("C3") + 1
End Sub
to accomplish what I need however I will have around 10 buttons total and dont want a different macro for each one.
Help please!