Silly question,
I have the following for loop:
Now im not sure if i need the loop or not but how would i calculate the sum of the numbers that the loop passes i.e. 1,2,3,4,5 etc.Dim i As Integer, count As Integer
count = 0
For i = 1 To 10
count = count + 1
Next i
Bookmarks