Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Want to create a combo chart with grouping.

Hi,

Below is my data set.

   

XYProductSum of Value
X1Y1P11
X1Y1P109
X1Y1P26
X1Y1P33
X1Y1P45
X1Y1P57
X1Y1P63
X1Y1P75
X1Y1P87
X1Y1P98
X2Y2P18.8
X2Y2P1014.36363636
X2Y2P1114.98181818
X2Y2P1215.6
X2Y2P1316.21818182
X2Y2P1416.83636364
X2Y2P1517.45454545
X2Y2P29.418181818
X2Y2P310.03636364
X2Y2P410.65454545
X2Y2P511.27272727
X2Y2P611.89090909
X2Y2P712.50909091
X2Y2P813.12727273
X2Y2P913.74545455
X3Y3P118.07272727
X3Y3P1023.63636364
X3Y3P1124.25454545
X3Y3P1224.87272727
X3Y3P1325.49090909
X3Y3P1426.10909091
X3Y3P1526.72727273
X3Y3P218.69090909
X3Y3P319.30909091
X3Y3P419.92727273
X3Y3P520.54545455
X3Y3P621.16363636
X3Y3P721.78181818
X3Y3P822.4
X3Y3P923.01818182
X4Y4P127.34545455
X4Y4P227.96363636
X4Y4P328.58181818
X4Y4P429.2
X4Y4P529.81818182
X4Y4P630.43636364
X4Y4P731.05454545
X4Y4P831.67272727
X4Y4P9

32.29090909

And I want to create a graph like attached image.

Can someone help me to figure out, how to do it.

Thanks & Regards,

Juthika

1 Solution

Accepted Solutions
swuehl
MVP
MVP

In my QlikView sample file, I've used two dimensions, one of the dimensions being Product.

As I said, I don't think that is possible with a standard QlikSense combo chart, maybe you can search an extension that supports this.

View solution in original post

10 Replies
swuehl
MVP
MVP

Maybe like this?

Just create a combined dimension

LOAD X & Y as Dim,

  X,

    Y,

    Product,

    [Sum of Value]

FROM

[https://community.qlik.com/thread/213058]

(html, codepage is 1252, embedded labels, table is @1);

Then a combochart with dimensions Dim and Product and expression =Sum( [Sum of Value])


ComboChart.png

Not applicable
Author

I am getting the value from excel sheet

Not applicable
Author

How to put Dim and Product  as dimension. And comm213058.qvw is black for me if i open in qliksense desktop

swuehl
MVP
MVP

Well, you have posted this question in place New to QlikView, so I assumed that you are using QlikView.

I don't think that the combo chart in QS is supporting multiple dimensions.

Not applicable
Author

Then how get the products. Where did you specify?

Not applicable
Author

And how do I group mulitple XY values like below

X1Y1, X2Y2 -> group1

X1Y1, X1Y2 -> group2

X2Y1, X2Y2 -> group3

X3Y1, X2Y2 -> group3

X3Y3, X3Y2 -> group3

swuehl
MVP
MVP

You could use a MAPPING approach like

MAP:

MAPPING LOAD * INLINE [

F1, F2

X1Y1, group1

X2Y2, group1

X2Y1, group2

X2Y2, group2

...

];

LOAD X, Y, Product, [Sum of Value],

          X&Y as Group1,

          ApplyMap('MAP', X&Y, 'no map found') as Group2

FROM YourExcelTable;

Not applicable
Author

Thank you that helped.

But I did not understand, in your graph, u put the dimension as XY and measure as sum(sum of value). How did products came. I can do in bar chart but not able to do as you gave done.

swuehl
MVP
MVP

In my QlikView sample file, I've used two dimensions, one of the dimensions being Product.

As I said, I don't think that is possible with a standard QlikSense combo chart, maybe you can search an extension that supports this.