Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
psk180590
Creator III
Creator III

Multiple Conditions for Color in QlikView Text Box

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!!

 

Labels (1)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

This?

If( A <B or A<C or A< D, red(), green())

View solution in original post

2 Replies
tresesco
MVP
MVP

This?

If( A <B or A<C or A< D, red(), green())

MarcoWedel

If( A < RangeMin(B,C,D), Red(), Green())