Thread
:
Do Until Question
View Single Post
#
2
Posted to microsoft.public.excel.programming
Ken Johnson
external usenet poster
Posts: 1,073
Do Until Question
Hi Ram,
Does this do what you want?
Sub count1()
Dim i As Integer
i = 1
Do Until Range("B" & i) = ""
Range("a" & i) = i
i = i + 1
Loop
End Sub
Ken Johnson
Reply With Quote
Ken Johnson
View Public Profile
Find all posts by Ken Johnson