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

Pivot Table visualization - alternating row colors

Hi - 

I currently have a Qlik Sense Pivot Table visualization.

I would like to alternate the row colors  so that every other row is blue (as an example).

The issue I have come across is that I am using three rows of data  - three levels of data (example : Organization,  Department, Team)

I tried this :

=if(rowNo()/2=floor(rowNo()/2),RGB(255, 255, 255),RGB(221,236,247))

It does color the rows but inconsistent when you go to the third level .

 

Thoughts ? thanks - Jerry

1 Solution

Accepted Solutions
rubenmarin

Hi, If you don't have indented rows (checkbox on presentation tab) this may work: =if(Even(RowNo(TOTAL)),RGB(255, 255, 255),RGB(221,236,247))

View solution in original post

2 Replies
rubenmarin

Hi, If you don't have indented rows (checkbox on presentation tab) this may work: =if(Even(RowNo(TOTAL)),RGB(255, 255, 255),RGB(221,236,247))

jerryr125
Creator III
Creator III
Author

Thank you - yes,  I see the indented rows can have an effect on this - appreciate your help! Jerry