The =BETWIXT?() function
The =BETWIXT?([
(Use the BETWEEN? function to include the boundaries)
=BETWIXT?(10 ,5 ,15 ) ->TRUE =BETWIXT?(10 ,10 ,15 ) ->FALSE =BETWIXT?(10 ,12 ,15 ) ->FALSE
DEFINE(
BETWIXT?,
LAMBDA(
number_to_check ,
lower_bound ,
upper_bound ,
AND(
GREATERTHAN?(
number_to_check ,
lower_bound ),
LESSTHAN?(
number_to_check ,
upper_bound ))))
Help us optimize this function!