<?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: Creating basic if statement expression in chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505894#M189146</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not clear to me,&lt;/P&gt;&lt;P&gt;if you want to break a value in to multiple value, you can use Left(), right(); mid() functions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or kindly elaborate a bit more, show us the data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Oct 2013 18:36:39 GMT</pubDate>
    <dc:creator>israrkhan</dc:creator>
    <dc:date>2013-10-22T18:36:39Z</dc:date>
    <item>
      <title>Creating basic if statement expression in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505892#M189144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am very new to Qlikview and have a basic chart of containing timesheet data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to break out into separate columns a series of paycode values with associated hours by testing with an IF statement for a particular paycode and return the hours for that paycode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I completely understand the normal construct for an IF statement, but just cannot get the syntax correct in my chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;alathwell&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 17:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505892#M189144</guid>
      <dc:creator />
      <dc:date>2013-10-22T17:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic if statement expression in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505893#M189145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perhaps using a pivot table is an option. Add paycode as dimension and drag it to the right above the expression(s). Once you see a thick blue horizontal line you can let go and the paycode values should be shown horizontally as columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to restrict that dimension to specific value you can use a listbox and select the values. Or you can use a calculated dimension like &lt;EM&gt;=match(paycode,'value1','value2',....,'valueN')&lt;/EM&gt;. Or put the filter in the expression. &lt;EM&gt;Sum(hours)&lt;/EM&gt; would become &lt;EM&gt;sum({&amp;lt;paycode={'value1','value2',..,'valueN'}&amp;gt;}hours)&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 18:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505893#M189145</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-10-22T18:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic if statement expression in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505894#M189146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not clear to me,&lt;/P&gt;&lt;P&gt;if you want to break a value in to multiple value, you can use Left(), right(); mid() functions..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or kindly elaborate a bit more, show us the data...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 18:36:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505894#M189146</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2013-10-22T18:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Creating basic if statement expression in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505895#M189147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you can use Set Analysis to separate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column1 = sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;paycode&lt;/SPAN&gt;={"001"}&amp;gt;}hours)&lt;/P&gt;&lt;P&gt;Column2 = sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;paycode&lt;/SPAN&gt;={"002"}&amp;gt;}hours)&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;P&gt;Set Analysis is usualy a better approach then 'if´s'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2013 19:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-basic-if-statement-expression-in-chart/m-p/505895#M189147</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-10-22T19:25:23Z</dc:date>
    </item>
  </channel>
</rss>

