Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pivot Chart layout

I am working to create a pivot chart. I do not currently have data in the "Remediation" columns, but I would like to always display them. How can i change this to not use dummy data and not show the "0"s at the bottom?

10 Replies
Anonymous
Not applicable
Author

Daniel,

Just check "Show all values" in dimensions tab, and uncheck "Supress zero values" in presentation tab.

Hope it helps.

Marc.

Not applicable
Author

When I do this (since I don't have data under "Remediation"), only the Interim and RF/Annual columns appear. I"m currently adding extra rows in my source data to tell Qlik that i want this "remediation" column to appear.

rajkumarb
Creator II
Creator II

HI

Suppress when Value is null From Dimensions Tab

Suppress Zero Values in Presentation Tab

Anonymous
Not applicable
Author

Also uncheck "Supress when value is null" in dimensions tab.

Marc

Not applicable
Author

Here is my source data (1 row):

Under timing, I do not have any rows with "remediation". How can I always have pivot fields when they are not included in the source data?

Anonymous
Not applicable
Author

Just add it to your data table when load script.

Concatenate (datatablename)

LOAD * INLINE [

    Timing

    Remediation

];

Not applicable
Author

How can I add that to my current load script?

LOAD Entity,

     Process,

     [Control ID],

     Timing,

     Auditor,

     Status,

     [Control Description]

FROM

(ooxml, embedded labels, table is Sheet1);

Anonymous
Not applicable
Author

MyTable:

LOAD Entity,

    Process,

    [Control ID],

    Timing,

    Auditor,

    Status,

    [Control Description]

FROM

(ooxml, embedded labels, table is Sheet1);

Concatenate (MyTable)

LOAD * INLINE [

    Timing

    Remediation

];

Not applicable
Author

Very helpful!

Now, how can I include the 'Status' of Not Initiated, In Progress, and Finished under the 'Remediation' timing?