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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
maxime66
Creator
Creator

Stripes on pivot table

Hi qlikers !

i would like to color one row each two row.

The .qvw attached worked on Qlikview V11 but seems not working anymore on V12.

Null values don't color and also dimensions don't color well.

any ideas how to do it ?

thanks.

1 Solution

Accepted Solutions
sunny_talwar

Not sure if this is okay, but unchecking 'Suppress Zero-Values' might help.... only issue is that you will see 0 instead of -

Capture.PNG

View solution in original post

6 Replies
vinieme12
Champion III
Champion III

Use below expression

=DUal(sum([nb product]),0.00001)

the reason is Rowno() is not calculated for Null() values, so add  default value like 0.00001

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
vinieme12
Champion III
Champion III

OR

This to retain the values when exporting

=DUal(sum([nb product]),if(sum([nb product])>0,sum([nb product]),'x'))

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
sunny_talwar

Not sure if this is okay, but unchecking 'Suppress Zero-Values' might help.... only issue is that you will see 0 instead of -

Capture.PNG

maxime66
Creator
Creator
Author

Good idea !

I add transparency of values if =0, works perfect !

=if(sum([nb product])=0,argb (0,0,0,0))

maxime66
Creator
Creator
Author

Just a quick note speaking of pivot design,

i nerver found how to remove the empty column between dimension and expression.

When  there is 2 expressions or more,  this column disappear ...

it's quite an annoying issue.

sunny_talwar

Yes it is indeed very annoying and I wish there was a way to get rid of it or assign color to it...