Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
cgaleaQlik
Contributor III
Contributor III

Vizlib pivot table - alternate strips and months in left and column

Hi All,

I have 2 questions regarding a vizlib pivot table I've created in Qlik Sense.

  1. The left hand column contains months over several years. However, my dataset does not contain data for every month ('missing months' in image below). Is there a way to fill in the missing months using the auto generated calendar in Qlik Sense.
  2. Is it possible to include alternate strips based on the months (see image below).

vizlib_pivot_table_alternate.png

 Thank you!!

Labels (1)
2 Solutions

Accepted Solutions
edwin
Master II
Master II

 is a sample pivot with stripes:

background color: if(odd(aggr(nodistinct rowno(),Month)),red(), blue())

edwin_0-1657558225296.png

 

View solution in original post

cgaleaQlik
Contributor III
Contributor III
Author

Thanks Edwin - appreciate your help!! 

View solution in original post

4 Replies
edwin
Master II
Master II

you can build the calendar separate from your fact.  you normally need the lower and upper thresholds and you can generate your calendar from that as DATE is pretty much well defined dimension.

you may not be able to get eactly that picture using a pivot table, but to answer the question re strips - yes you can control the background color.  you can use the following to identify rows that go together based on Month:

aggr(nodistinct rowno(),Month)

 

edwin
Master II
Master II

 is a sample pivot with stripes:

background color: if(odd(aggr(nodistinct rowno(),Month)),red(), blue())

edwin_0-1657558225296.png

 

cgaleaQlik
Contributor III
Contributor III
Author

Thanks Edwin - appreciate your help!! 

edwin
Master II
Master II

yw