<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: create stack and group  bars in a same graph in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710754#M256011</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayanthan,&lt;/P&gt;&lt;P&gt;You need to add "TypeID" in dimension of your chart and adjust expression with "Type" so that it will group in "Budget" and "Projection &amp;amp; Sales" category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2014 13:14:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-09T13:14:25Z</dc:date>
    <item>
      <title>create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710745#M256002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i would like create actual and projection in group ,whereas stack bar needs to be used for Allocation&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jul 2014 17:56:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710745#M256002</guid>
      <dc:creator />
      <dc:date>2014-07-03T17:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710746#M256003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, add two dimensions to your chart and select the option Stacked on the Style tab. You will get groups of stacked bars in your chart. If you want Allocation stacked then make it the second dimension in the chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 08:59:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710746#M256003</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-07-04T08:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710747#M256004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, by using below macro you can maintain both stacked an group style in single graph.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub ToggleChartBarStack&lt;/P&gt;&lt;P&gt;dim chart&lt;/P&gt;&lt;P&gt;dim cp&lt;/P&gt;&lt;P&gt;set chart = ActiveDocument.GetSheetObject("CH29")&lt;/P&gt;&lt;P&gt;set cp = chart.GetProperties&lt;/P&gt;&lt;P&gt;If cp.ChartProperties.BarModeStacked = true then&lt;/P&gt;&lt;P&gt;cp.ChartProperties.BarModeStacked = false&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;cp.ChartProperties.BarModeStacked = true&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;chart.SetProperties cp&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 09:08:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710747#M256004</guid>
      <dc:creator />
      <dc:date>2014-07-04T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710748#M256005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayanthan,&lt;/P&gt;&lt;P&gt;Add 2 dimensions in a bar chart and 2 expressions and select Stacked style.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have following data:&lt;/P&gt;&lt;P&gt;City,Population,Month&lt;/P&gt;&lt;P&gt;Mumbai,20,Jan&lt;/P&gt;&lt;P&gt;Pune,40,Jan&lt;/P&gt;&lt;P&gt;Mumbai,35,Feb&lt;/P&gt;&lt;P&gt;Goa,31,Jan&lt;/P&gt;&lt;P&gt;Mumbai,60,Mar&lt;/P&gt;&lt;P&gt;Pune,25,Feb&lt;/P&gt;&lt;P&gt;Pune,56,Apr&lt;/P&gt;&lt;P&gt;Goa,31,Feb&lt;/P&gt;&lt;P&gt;Goa,31,Apr&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add City and Month field in dimension and specify 2 expressions for the data. Here I have used following expressions:&lt;/P&gt;&lt;P&gt;=sum(Population+68)&lt;/P&gt;&lt;P&gt;=(sum(Population))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This gives following output where for City Goa we get Group of bars specifing Months and representing the values for both of the above expressions&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="61764" alt="grp.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61764_grp.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 09:54:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710748#M256005</guid>
      <dc:creator>rohan_mulay</dc:creator>
      <dc:date>2014-07-04T09:54:04Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710749#M256006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look into attached file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="chart.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/61756_chart.PNG.png" style="width: 620px; height: 233px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 10:03:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710749#M256006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-04T10:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710750#M256007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, i have miscommunicated earlier. I want Actual and Projection in Stack ,whereas allocation as another bar(since i do not how to have stack and group in&amp;nbsp; a same chart, i have put allocation in line chart). {&lt;/P&gt;&lt;P&gt;Please refer the below screen shot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/61755_Capture.JPG.jpg" style="width: 620px; height: 216px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2014 10:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710750#M256007</guid>
      <dc:creator />
      <dc:date>2014-07-04T10:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710751#M256008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi satya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it doesnt work for me. Kindly help to solve this issue&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please refer the attached QVW&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 09:56:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710751#M256008</guid>
      <dc:creator />
      <dc:date>2014-07-09T09:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710752#M256009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attachment&lt;/P&gt;&lt;P&gt;&lt;IMG alt="stack.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/62048_stack.PNG.png" style="width: 620px; height: 324px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 10:14:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710752#M256009</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-09T10:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710753#M256010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;superb Satya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can i know where i went wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jayanthan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 10:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710753#M256010</guid>
      <dc:creator />
      <dc:date>2014-07-09T10:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710754#M256011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jayanthan,&lt;/P&gt;&lt;P&gt;You need to add "TypeID" in dimension of your chart and adjust expression with "Type" so that it will group in "Budget" and "Projection &amp;amp; Sales" category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 13:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710754#M256011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-09T13:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710755#M256012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where/How would you apply the macro? In the sheet?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2018 14:06:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/710755#M256012</guid>
      <dc:creator>szeconku</dc:creator>
      <dc:date>2018-01-10T14:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/1599049#M444127</link>
      <description>&lt;P&gt;But hw can I do this in QlikSense, we cannot take more than 1 measure if we take 2 dimensions in Qliksense.&lt;/P&gt;&lt;P&gt;Shubham&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 11:29:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/1599049#M444127</guid>
      <dc:creator>Shubham_Deshmukh</dc:creator>
      <dc:date>2019-07-04T11:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: create stack and group  bars in a same graph</title>
      <link>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/1728350#M452154</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is it possible to do the same in Combo Chart in QLIK Sense Feb 2020 version?&lt;/P&gt;&lt;P&gt;Because I have to create a stack bar, normal and a line chart to show month-wise data.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 09:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/create-stack-and-group-bars-in-a-same-graph/m-p/1728350#M452154</guid>
      <dc:creator>ashima_0605</dc:creator>
      <dc:date>2020-07-16T09:54:50Z</dc:date>
    </item>
  </channel>
</rss>

