<?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: Line Chart no bar option for expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538539#M550213</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USE COMBO Chart, as this chart type facilitates the combination of Bar and Line chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Dec 2013 04:40:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-12-31T04:40:19Z</dc:date>
    <item>
      <title>Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538534#M550208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am building a line chart. X axis is Quarter and Y is Revenue (bar chart) and growth (line chart).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I chosed the line chart. I have one dimension Quarter, and two expressions. I would like sum(Revenue) be in bars. but the option 'bar' in tab Display Option is grayed...&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why is it so ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I want to display revenues for Q1 2012, Q2 2012, Q3 2012, Q4 2012, Q1 2013 etc... quarters and years are two separate dimensions. if i set year and quarters as 2 dimensions for the chart, it is displaying four line charts and X axis are years. how can i build this line chart ? &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ce message a été modifié par&amp;nbsp;: cl bld&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 21:53:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538534#M550208</guid>
      <dc:creator />
      <dc:date>2013-12-30T21:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538535#M550209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go on the General tab and choose the Combo Chart(third option).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 22:04:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538535#M550209</guid>
      <dc:creator>iktrayanov</dc:creator>
      <dc:date>2013-12-30T22:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538536#M550210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select COMBO Chart,&lt;/P&gt;&lt;P&gt;DImension : &lt;/P&gt;&lt;P&gt;Quarter-Year &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expessions:&lt;/P&gt;&lt;P&gt;1) SUM(Revenue) - Select Bar and Untick Line option&lt;/P&gt;&lt;P&gt;2) SUM(Growth) or whatever your dimension - Select Line and untick Bar option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Dec 2013 22:09:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538536#M550210</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2013-12-30T22:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538537#M550211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of Bar Chart select Combo Chart, if you dont have Quarter-Year dimension arrive it in script like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; Ceil(Month(DateDimensionName)) &amp;amp; '-' &amp;amp; Year(DateDimensionName) AS Quarter-Year&lt;/P&gt;&lt;P&gt;FROM DataSource; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take Dimension as Quarter-Year and use the following expressions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(Revenue) - Select Bar&lt;/P&gt;&lt;P&gt;Sum(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Growth&lt;/SPAN&gt;) - Select Line option and uncheck Bar option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 02:18:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538537#M550211</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-12-31T02:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538538#M550212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Oilandgas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want one expression shows in bar chart and one in line chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you have to use Combo chart for such representation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer the attached image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work out for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Suresh Rawat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 02:43:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538538#M550212</guid>
      <dc:creator>suresh_rawat</dc:creator>
      <dc:date>2013-12-31T02:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538539#M550213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USE COMBO Chart, as this chart type facilitates the combination of Bar and Line chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 04:40:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538539#M550213</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-12-31T04:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538540#M550214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Select Combo chart and you can enable both bar and line for your expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 08:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538540#M550214</guid>
      <dc:creator>raghavsurya</dc:creator>
      <dc:date>2013-12-31T08:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538541#M550215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have already a variable 'Quarter' and a variable 'Year'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i build in the Combo Chart wizard directly the Quarter-Year variable ? how to ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2013 09:08:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538541#M550215</guid>
      <dc:creator />
      <dc:date>2013-12-31T09:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Line Chart no bar option for expression</title>
      <link>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538542#M550216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not talking about variable, create additional dimension in script for Quarter-Year and use this expressions.&amp;nbsp; If possible can you attach the sample file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Jan 2014 02:02:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Line-Chart-no-bar-option-for-expression/m-p/538542#M550216</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-01-02T02:02:57Z</dc:date>
    </item>
  </channel>
</rss>

