Link to home
Start Free TrialLog in
Avatar of bobrossi56
bobrossi56

asked on

FileMaker Pro 8.5 - Case statement question...

I have a situation where I am using a Case statement to turn a container either red or green colored based on the results of a total field. The statement I was using is:
Case ( total < 1 ; cont1[1] ; cont1[2] )

This works great. However, my end user just informed me that he needs to change this equation such that any result in the "total" field that is BETWEEN and including 0.00 and 1.00 should turn the cont1[1] (green) and anything above OR below that range should turn cont1[2] (red).

I am not sure how this statement should be phrased.
thx experts...
-BobR
ASKER CERTIFIED SOLUTION
Avatar of North2Alaska
North2Alaska
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of bobrossi56
bobrossi56

ASKER

Works like a charm. Didn't know you could put an OR expression in a Case statement. Thx...