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: 
smilingjohn
Specialist
Specialist

Statc Bar

Hi All,

Please find the attachment of the QVW file.

in this i have bar chart which   which display the values of c d and e ..

but i need to show one more bar as "A" with a static values of 40 ..

how can i achieve this ..

thanks in advance

2 Replies
pooja_prabhu_n
Creator III
Creator III

Hi,

You can join the static value table in the script

Custom:

Directory;

LOAD Alpha,

    Sales

FROM

[..\Users\test\Desktop\List_BOX.xls]

(biff, embedded labels, table is Sheet3$);

Join

LOAD * Inline

[

Alpha, Sales

A,40

];

balabhaskarqlik

Give Inline load like:

ABC:

Load

Col1,Col2,Col3 from abc.csv;

Table:

Load * inline

[

Col1,Col2,Col3

A,B,40

];

It'll Autoconcatenate and create single table.