Skip to main content

I am attempting to create a function that separates two value ranges: values that are >0 and values that are greater than 0 but less than or equal to 2.00.  My intent is to visualize these two categories. I have made a couple of attempts with these formulas, but without success:

 

(1).

IF SUM([Hours]) > 2.00 THEN "Total Overtime"         

ELSEIF "Incidental Overtime"

END

 

(2).

IF SUM([Hours]) > 2.00 THEN "Total Overtime"

ELSE "Incidental Overtime"

END

 

(3).

IF AVG([Hours]) <= 2.00 THEN "Incidental Overtime"

ELSE "Total Overtime"

END

 

Any assistance is appreciated...

2 answers
  1. Apr 28, 2016, 11:58 PM

    Do you have any sample data ?  I think what you're trying to do is:

     

    IF sum([Hours]) >= 0 and sum([Hours]) <= 2

    THEN "Total Overtime"

    ELSE "Incidental Overtime"

    END

     

    That will return "Total Overtime" when sum([Hours]) is 0-2 (inclusive), but any negative number or number above 2 (so 2.0000001 and up ) will be Incidental Overtime.

0/9000