|
I think that should have beenah....d'uh?
IF (Feet > MinFeet OR (Feet = MinFeet AND Inches >= MinInches))
AND (Feet < MaxFeet OR (Feet = MaxFeet AND Inches <= MaxInches))
Personally, I like to leave the operator alone and change the order ofOkay...shouldn't ya get your Min/MaxFeet in front of yer Feet (after the ORs)
the operands
IF (MinFeet < Feet OR (Feet = MinFeet AND MinInches <= Inches))
AND (Feet < MaxFeet OR (Feet = MaxFeet AND Inches <= MaxInches))
Also to the OP, I'd also recommend you forget about OPNQRY and use embedded SQL.agreed
This mailing list archive is Copyright 1997-2026 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.