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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Change Dimension Background

Hello Friends,

We have 3 fields Week, Date and Event (which is associated to a date).

Our requirement is crosstab having Dimension as Week which need to be highlighted when event is present (but date and event are not taken as dimensions).

Please find the attached screenshots for reference.

Week 1 and 3 should be highlighted with a color.

Thanks in Advance,

Siva Srinivas.

Labels (1)
1 Solution

Accepted Solutions
vipin_mishra479
Creator II
Creator II

Hi Siva,

Use This in Dimension

if(len(Event)=0,White(),Green())

Vipin

View solution in original post

3 Replies
maternmi
Creator II
Creator II

Hi,

--> chart properties

--> expression

--> week properties, open by clicking on plus

-->background color

-->write the formula: if([event] <> 0, green(255))

hope that helps you!

BR

Michael

vipin_mishra479
Creator II
Creator II

Hi Siva,

Use This in Dimension

if(len(Event)=0,White(),Green())

Vipin

Not applicable
Author

Thanks Michael and Vipin for your Quick responses.