Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
Not sure if this is okay, but unchecking 'Suppress Zero-Values' might help.... only issue is that you will see 0 instead of -
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
OR
This to retain the values when exporting
=DUal(sum([nb product]),if(sum([nb product])>0,sum([nb product]),'x'))
Not sure if this is okay, but unchecking 'Suppress Zero-Values' might help.... only issue is that you will see 0 instead of -
Good idea !
I add transparency of values if =0, works perfect !
=if(sum([nb product])=0,argb (0,0,0,0))
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.
Yes it is indeed very annoying and I wish there was a way to get rid of it or assign color to it...