I have a rather complicated case of ElseIf and im looking for advice. My working If code is as follows:
If code < 60000 Or code > 90000 Then
FRig = (grossprice - Discount)
ElseIf code > 60000 And code < 90000 Then
FRig = grossprice - grossprice * 0.9
End If
I need to add on the following condition;
If code < 18000 and code < 19000 Then
FRig = (grossprice - Discount)* 0.8
Can i enter this line below the If code < 60000 Or code > 90000 Then line?
I am afraid i may twist the logic of the code




