1
I’m setting up a small system that if the number entered in the textbox3 is less than 3, appears in the textbox4 an "8%" message, and if it is a number between 4 and 6, it appears in textbox4 "9%". That part of between 4 and 6 I’m not able to do, I tried to put:  
textbox3.text > "4" and < "6"...  
but it didn’t work. Here’s my code.
If Val(TextBox3.Text < "3") Then
        TextBox4.Text = "8%"
    ElseIf Val(TextBox3.Text > "6") Then
        TextBox4.Text = "9%"
    End If
That’s just what I needed. Thanks!!!
– Mateus Justino