X
xtalenaj
Suppose that an Excel spreadsheet contains the value "Hello" in cell A10 but
is otherwise empty when the following code fragment is executed:
After this code fragment is run, the value of intCounter will be what?
is otherwise empty when the following code fragment is executed:
Code:
Dim intCounter As Integer
intCounter = 1
Do While Cells(intCounter, 1).Value <> "Hello"
intCounter = intCounter + 1
Loop