Hi i am trying to learn VB and i'm practising "if statements" what i would really like to do is use one if statement for if the shirts value is odd and another for if the shirts value is even, can anyone help.
Thanks
Angel
Thanks
Angel
Code:
If shirts = 1 Then
reg = 12
markdown = 9
savings = 3
Else
If shirts >= 2 And shirts < 25 Then
reg = 10 * shirts
markdown = reg * 0.75
savings = reg * 0.25
Else
If shirts >= 25 Then
MessageBox.Show("Please contact the manager for a special price", "Bulk Order")
End If
End If
End If
Comment