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

Dimension Colour Background with a contain

Hi Qlikers,

I have a pivot table where I would like to change the background of the cell dependant on the value. However, as the values are quite interchangeable, I need to be able to tell Qlikview for example to change the cell green if the value contains the word "Complete".

I have tried using this, however the "*" causes an error in the function.

=if(Status = "*Complete*", green(), black())

Any ideas?

Many Thanks

Kozan

1 Solution

Accepted Solutions
Digvijay_Singh

May be this -

if(Wildmatch(Status,'*Complete*'),green(),black())

View solution in original post

1 Reply
Digvijay_Singh

May be this -

if(Wildmatch(Status,'*Complete*'),green(),black())