EvolvedDSM
2007-01-30 20:25:05 UTC
Rather than including both a GTE and LTE in a CFIF when I want to find
something between two values, is there an operator that I can include to simply
things.
something like
<CFIF #column1# BETWEEN(value1, value2)>
Currently I have to do
<CFIF (#column1# GTE value1) AND (#column1# LTE value2))>
It just seems very redundant to include a GTE and LTE in the same statement
when my ideal example above would cover this in one operator.
So, is there anything out there for what I'm looking for?
something between two values, is there an operator that I can include to simply
things.
something like
<CFIF #column1# BETWEEN(value1, value2)>
Currently I have to do
<CFIF (#column1# GTE value1) AND (#column1# LTE value2))>
It just seems very redundant to include a GTE and LTE in the same statement
when my ideal example above would cover this in one operator.
So, is there anything out there for what I'm looking for?