Thread
:
Incrementing a cell
View Single Post
#
2
Posted to microsoft.public.excel.programming
Paul Martin
external usenet poster
Posts: 114
Incrementing a cell
Or:
With Sheets("Week 1").Range("B3")
.Value = .Value + 1
End With
If the code is to be executed on the active sheet you can use:
With Range("B3")
.Value = .Value + 1
End With
Regards
Paul Martin
Melbourne, Australia
Reply With Quote
Paul Martin
View Public Profile
Find all posts by Paul Martin