I am setting up a small system that if the number entered in textbox3
is less than 3, a% "message will appear in% with an" 8% "message, and if it is a number between 4 and 6, it appears in textbox4
" 9%. " This part of between 4 and 6 I can not do, I tried to put:
textbox3.text > "4" and < "6"...
But it did not work. Here is my code.
If Val(TextBox3.Text < "3") Then
TextBox4.Text = "8%"
ElseIf Val(TextBox3.Text > "6") Then
TextBox4.Text = "9%"
End If