<?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: Barcode Width Control (Using an Expression) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452864#M434666</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I though of that. However my dimension (Class) has some lines of data where there is no data. See attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until I have data for each class, the columns won't line up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I create a placeholder to fill in the Class I dimension until data is there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Nov 2017 20:45:16 GMT</pubDate>
    <dc:creator>jmonroe918</dc:creator>
    <dc:date>2017-11-10T20:45:16Z</dc:date>
    <item>
      <title>Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452862#M434664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to control the width of the bars in a bar-chart using and expression (like with background color)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a stacked bar chart showing Completed vs Total. I'd like for the Completed bar to be more narrow than the Completed bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haven't found anything that describes how yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 19:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452862#M434664</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-11-10T19:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452863#M434665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jeff,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I know, you cannot dynamically change the width of bars in a bar chart.&amp;nbsp; &lt;/P&gt;&lt;P&gt;If I'm understanding your issue though, you could try layering 2 bar charts on top of each other, with one chart, the top chart, showing Completed, and the bottom chart showing total.&amp;nbsp; You could change the width of the Completed bars to be skinnier, and also make the chart transparent.&amp;nbsp; This will give the end user the illusion that it is one chart, when in fact it is two.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 19:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452863#M434665</guid>
      <dc:creator>David_Capan</dc:creator>
      <dc:date>2017-11-10T19:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452864#M434666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I though of that. However my dimension (Class) has some lines of data where there is no data. See attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Until I have data for each class, the columns won't line up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I create a placeholder to fill in the Class I dimension until data is there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452864#M434666</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-11-10T20:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452865#M434667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You absolutely can.&amp;nbsp; In your expression, or the script if you can, say if(isnull(sum([Brochures.RA Appprove Complete])),0,sum([Brochures.RA Appprove Complete])).&amp;nbsp;&amp;nbsp; This will put a 0 wherever there are no values.&lt;/P&gt;&lt;P&gt;Make sure you just uncheck "Supress Zero-Values" under the presentation tab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT:&amp;nbsp; You'll also have to edit the Static Max in the top chart so that the numbers will line up.&amp;nbsp; You can use =max(aggr(sum([Brochures.Total Qty Required]),Brochures.Class)) to make the max on the X axis the largest amount of your "Total Qty Required" expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2017 20:54:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452865#M434667</guid>
      <dc:creator>David_Capan</dc:creator>
      <dc:date>2017-11-10T20:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452866#M434668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you considered using a Combo chart instead and plotting complete as a Symbol?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2017-11-11_13-49-31.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/182936_2017-11-11_13-49-31.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2017 21:50:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452866#M434668</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-11-11T21:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452867#M434669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Rob:&lt;/P&gt;&lt;P&gt;I'm not very familiar with setting up the combo chart. Can you provide some instruction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Nov 2017 21:43:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452867#M434669</guid>
      <dc:creator>jmonroe918</dc:creator>
      <dc:date>2017-11-12T21:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Barcode Width Control (Using an Expression)</title>
      <link>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452868#M434670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Select the Combo Chart as the chart type on the general tab.&lt;/P&gt;&lt;P&gt;2. On the expressions tab, you can select display representation: Bar, Symbol or Line -- for each expression,&lt;/P&gt;&lt;P&gt;3. You can increase the symbol size on the presentation tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've updated your example here attached.&amp;nbsp; BTW, there was a bad entry for "Bar Offset" in the Total expression that was making things wonky. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Nov 2017 23:14:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Barcode-Width-Control-Using-an-Expression/m-p/1452868#M434670</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-11-12T23:14:03Z</dc:date>
    </item>
  </channel>
</rss>

