Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikapple
Creator
Creator

Need Help on Color Coding as soon as possible

Hi ,

I have fileds lik this ,

My requirement is

Can anyoneplease help as it is very urgent for me

8 Replies
Anil_Babu_Samineni

May be this?

If( [No of team managers] <2, Amber())

If([No of Member] =2, Amber(), If([No of Member] <2, Red())


Note - Amber() is not a direct color function. You can manipulate wit your RGB code

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
qlikapple
Creator
Creator
Author

is there any possbility , can i keep in the table it self

Anil_Babu_Samineni

Yes, You can use Text Color / BG color while expansion of expression ..

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
qlikapple
Creator
Creator
Author

My requirement  is

if no of  team memers is 2,it should show yellow,

if no of  team memers is  greater than 2,normal black

if no of  team memers is  less  than 2,red

i need the text color

can anyone please help

Anil_Babu_Samineni

Yes, You can do something like below

If([no of  team memers]=2, Yellow(), If([no of  team memers] > 2, Black(), If([no of  team memers] <2, Red())))

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
qlikapple
Creator
Creator
Author

hi

no luck

Anil_Babu_Samineni

What formula is applied for [No of Members] ??

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
CELAMBARASAN
Partner - Champion
Partner - Champion

Hi Sahaja

You formula should be based on your expression name or your expression in the place of [MEMBERS]

Below exp is based on the Exp name

If([No of Members]=2, Yellow(), If([No of Members] > 2, Black(), If([No of Members] <2, Red())))

or

If(Sum([MEMBERS])=2, Yellow(), If(Sum([MEMBERS]) > 2, Black(), If(Sum([MEMBERS])<2, Red())))


Either way should work