in an input box I am trying to allow the user to only input certain text, in this case weekly, monthly, quarterly, semiannually, or annually. It seems fairly easily but I just don't know where I am going wrong.
Do
frequency = InputBox("Please enter your savings frequency.")
If frequency <> "weekly" or "monthly" or "quarterly" or "semiannually" or "annually" Then
MsgBox ("Must be weekly, monthly, quarterly, semiannually, or annually .")
End If
Loop While frequency <> weekly" or "monthly" or "quarterly" or "semiannually" or "annually"
You need to test every condition separately. You can use a variable to check the loop condition.
Try this code: