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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Wildmatch Conditional formatting

Hi

I have created a concatenated field to show names.  See below :

Concat(Name,Chr(10))

How do I change the background colour if the Concatenated cell contains 'VACANT'

Any help appreciated.

Regards

Phil

1 Solution

Accepted Solutions
sunny_talwar

May be this

If(SubStringCount(Concat(DISTINCT '|' & Name & '|'), '|VACANT|') = 1, RGB(255,0,0))

View solution in original post

2 Replies
sunny_talwar

May be this

If(SubStringCount(Concat(DISTINCT '|' & Name & '|'), '|VACANT|') = 1, RGB(255,0,0))

Anonymous
Not applicable
Author

Perfect.  Thanks