Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
bazzaonline
Creator
Creator

Development Graph - How??

Hello,  I need more help.

Is it possible to draw line graphs from multiple dimensions, for example,

Customer     Day1     Day2     Day2

Fred               5          6          7

Jane               8          9         10

I want a line graph that shows Fred going up day 1 to day 3.

Is this possible as Day1, Day2 and Day3 are separate dimensions?

Thanks Paul

1 Solution

Accepted Solutions
PradeepReddy
Specialist II
Specialist II

Script:

LOAD Customer,

  Day1 as Value,

  'Day1' as Day

FROM

(ooxml, embedded labels, table is Sheet1);

LOAD Customer,

     Day2 as Value,

  'Day2' as Day    

FROM

(ooxml, embedded labels, table is Sheet1);

LOAD Customer,

     Day3 as Value,

    'Day3' as Day

FROM

(ooxml, embedded labels, table is Sheet1);

Line Chart

Dimension: Day,Customer

Expression: Sum(Value)

View solution in original post

10 Replies
PradeepReddy
Specialist II
Specialist II

some thing like this..

bazzaonline
Creator
Creator
Author

Sorry, like what??

Not applicable

Hi paul,

separate dimensions in single chart or multiple charts


PradeepReddy
Specialist II
Specialist II

see the attchment..

bazzaonline
Creator
Creator
Author

Single chart. Thanks

bazzaonline
Creator
Creator
Author

Hello, sorry I haven't been very clear.  I have attached example of the script.  Are you able to show how to draw the graph from this example??

bazzaonline
Creator
Creator
Author

Attached

bazzaonline
Creator
Creator
Author

Hello, I have added an attachment of my script.  Are you able to help?

PradeepReddy
Specialist II
Specialist II

Script:

LOAD Customer,

  Day1 as Value,

  'Day1' as Day

FROM

(ooxml, embedded labels, table is Sheet1);

LOAD Customer,

     Day2 as Value,

  'Day2' as Day    

FROM

(ooxml, embedded labels, table is Sheet1);

LOAD Customer,

     Day3 as Value,

    'Day3' as Day

FROM

(ooxml, embedded labels, table is Sheet1);

Line Chart

Dimension: Day,Customer

Expression: Sum(Value)