Hi, Im trying to program a quiz for my coursework in computing at school and I have stored the Scores in a variable. I have coveniently called the variable Score, and I Dim it as Integer.
I need to make an IF statement that says, IF Score is between 1 and 4, then a MsgBox comes up saying you scored 1 - 4. But I dont know how to say IF Score is 1 - 4.
Ive tried:
IF Score = 1 - 4 THEN
MsgBox("You scored 1 - 4")
&
IF Score = 1 or 2 or 3 or 4 THEN
MsgBox("You scored 1 - 4")
&
IF Score = 1 , 2, 3, 4 THEN
MsgBox("You scored 1 - 4")


