Thread
:
Continual addition to Cell
View Single Post
#
2
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
Continual addition to Cell
After creating the button, assign this macro to it:
Sub qwerty()
With Range("B9")
.Value = .Value + 1
End With
End Sub
Adjust the cell to suit your needs
--
Gary''s Student - gsnu200807
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student