If number1 >100 and number1 < 200 then
'...do whatever you want done
End If
or on one line:
If number1 >100 and number1 < 200 then '...do something
where number1 is a variable containing your number (150 in your example).