Hi,
|
|
Rita Hienekamp
Sep 15 15:21
Hi,
Can anyone tell me how to compare 2 numbers using a case function? If the value is < 75, then I want to show "On Track", if the value is between 75-90, I want to show "At Risk" and if the value is above 90, I want to show "Off Track".
When I try to use the case statement, I am not able to get the right results comparing numbers. The examples and the documentation only show string comparisons.
I need to do something like:
{Case(round((($ActualEffort/ Hours(1) * 100)/$Work)),
'"<'+'75','LOWER','HIGHER')}
Whatever I try, it always shows me HIGHER. Note that I have 3 possibilities, so an IF statement won't work... unless I can use nested IF statements.
|