VB Code:
  1. strinput = InputBox("Who are you?")
  2.  
  3.     For i = 0 To 2
  4.         If guest(i) = strinput Then
  5.                 blnvalid = True
  6.                 Else: blnvalid = False
  7.           End If
  8.      Do While blnvalid = False
  9.      strinput = ("reenter")
  10.      Loop
  11.     Next i

I'm trying to validate an input and if validation = false, a new question will be asked instead of the thing looping the same question.