https://bugs.documentfoundation.org/show_bug.cgi?id=115334

--- Comment #4 from Markus Mohrhard <markus.mohrh...@googlemail.com> ---
(In reply to Eric from comment #3)
> One field there is not a box to type into but also look at the logic of the
> arrows, its not mutually exclusive as it should be (see the image i attached
> in my original post) They are using >= and <= instead of >, =, <

They are exclusive in the sense that first the >= condition for green is
evaluated, then the >= for yellow and if none of the two matches the last
condition (red) is taken. The equivalent pseudo code would be:

if (val >= green_limit)
    set(green)
else if (val >= yellow_limit(
    set(yellow)
else
    set(red)


Your proposal is unable to handle more than 3 conditions and does not allow to
set a range for the middle condition.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to