Can anyone see whats wrong with my while loop below? Basically I want to request a user to enter either "m" or "w", however, when I run it seems to enter an infinite loop despite the user entering "m" or "w".
While period <> "m" Or period <> "w"
period = InputBox(Prompt:="Please enter the period (m/w): ", Title:="Period")
Wend