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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
kris_vliegen
Partner - Creator III
Partner - Creator III

Hide rows with 0 value in Pivot-Table

Hi all,

To change the background-color of my pivot-tabel row by row I use =if(Even(RowNo(TOTAL)), RGB(192,192,192), RGB(165,165,165)) . If I do this for one expression or dimension the 0 values that were hidden show up.

Before:

Before color.JPG.jpg

After:

After Color.JPG.jpg

How Can I hide the empty rows?

Regards,

Kris

11 Replies
tresesco
MVP
MVP

Calculated dimension: =

=Aggr(If( Not IsNull (

num(FirstSortedValue(

          aggr(sum(Stock15), Station, ArtikelomschrijvingLang, DateTimeNum),

           -aggr(DateTimeNum, Station, ArtikelomschrijvingLang, DateTimeNum)

),'#.##0 L')

) ,AROMAR), Station, AROMAR)

1234.png

kris_vliegen
Partner - Creator III
Partner - Creator III
Author

Thanks Tresesco,

Now it works :-)))

Regards,

Kris