Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have a very simple condition to fill the color of a Text Box.
I have 4 fileds say A,B,C,D
I have to use them and fill the color of a TextBox using the condition if A< (B or C or D) then Red else Green.
Seems pretty simple but i'm struggling to put it into QV fromat.
Thanks!!
This?
If( A <B or A<C or A< D, red(), green())
This?
If( A <B or A<C or A< D, red(), green())
If( A < RangeMin(B,C,D), Red(), Green())