M
Murt
on my inbox below i want the loop to quit if the user enters End,
It does not function as written,
any ideas?
thanks
----------------------
Dim inputString As String
Dim i As Integer
For i = 0 To n + 1
farmers(i) = InputBox("enter a farmer's name", , "<farmer>")
If inputString = "end" Then
Exit For
End If
Next
----------------------
It does not function as written,
any ideas?
thanks
----------------------
Dim inputString As String
Dim i As Integer
For i = 0 To n + 1
farmers(i) = InputBox("enter a farmer's name", , "<farmer>")
If inputString = "end" Then
Exit For
End If
Next
----------------------