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: 
Daniel_Moore
Former Employee
Former Employee

Jazzing up a pivot table

Trying to make a QVW that looks like this report. I've made a pivot table - see attached QVW but it's a bit lacking... Any suggestions?

Current report:

SampleReport.png

1 Solution

Accepted Solutions
Daniel_Moore
Former Employee
Former Employee
Author

Thanks for the ideas everybody! After some thought I decided to 'pivot' my question. What a pun- cause a straight table looks more like the original report:

rpt_sample.png

I added some if statements in the load script to make the pivots & subtotals work:

     if(left(Status,3)='Ope',if(left(Severity,1) ='H',1,0),0) as OpenH,

     if(left(Status,3)='Ope',if(left(Severity,1) ='H',0,1),0) as OpenL,

     if(left(Status,3)='Ope',1,0) as Open,

etc.

I think that's closer to the original report. Agreed?

View solution in original post

4 Replies
Anonymous
Not applicable

check this and let me know

Not applicable

See the attached file, I did some formatting with the dimension background color and text color.

Not applicable

See attached.

Daniel_Moore
Former Employee
Former Employee
Author

Thanks for the ideas everybody! After some thought I decided to 'pivot' my question. What a pun- cause a straight table looks more like the original report:

rpt_sample.png

I added some if statements in the load script to make the pivots & subtotals work:

     if(left(Status,3)='Ope',if(left(Severity,1) ='H',1,0),0) as OpenH,

     if(left(Status,3)='Ope',if(left(Severity,1) ='H',0,1),0) as OpenL,

     if(left(Status,3)='Ope',1,0) as Open,

etc.

I think that's closer to the original report. Agreed?