Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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