Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
reinholdgraf
Creator
Creator

background-color dependent on several conditions

Need to set the background color of an article number in a pivot-table dependent on the following conditions

- number of customers (distinct) >= X

- quantity >= Y

- sales€ >= Z

For a KPI-figure, i used the following:

count({<Menge = {">=1000"}, KundeNr = {">=25"}>} KundeNr)

But for the background, I have no idea, how to set up a formula with multiple conditions

Reinhold

1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

You need to combine these conditions porbably per AND like:

if(

     count({<Menge = {">=1000"}, KundeNr = {">=25"}>} KundeNr) > x

          AND

     sum(sales) > y

          AND

     sum(quantity) > z,

green(), red())

- Marcus

View solution in original post

4 Replies
vikasmahajan
MVP
MVP

Changing the background color based on value?

HTH

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
reinholdgraf
Creator
Creator
Author

value vor quantity and sales€

count for number of customers

marcus_sommer
MVP
MVP

You need to combine these conditions porbably per AND like:

if(

     count({<Menge = {">=1000"}, KundeNr = {">=25"}>} KundeNr) > x

          AND

     sum(sales) > y

          AND

     sum(quantity) > z,

green(), red())

- Marcus

reinholdgraf
Creator
Creator
Author

yes, AND is what I need.

Thank you !