<?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 Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972222#M332695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue was with the first if statement - the 152621* did not work to identify IT assets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Oct 2015 15:22:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-10-27T15:22:55Z</dc:date>
    <item>
      <title>Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972218#M332691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Trying to create a calculated dimension in my load script but I know that some of the syntax below is not correct. Any pointers would be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If([Major Category]='152621*' AND [Net Bookvalue]= '0', 'IT',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If([Major Category]-='152621*' AND [Major Category] &amp;lt; '15400000' AND [Net Bookvalue] = '0', 'Other')) AS [Depreciated Category]&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;- dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 14:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972218#M332691</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-27T14:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972219#M332692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If([Major Category] like &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'152621*') and [Net Bookvalue] = 0, 'IT',&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If(not [Major Category] like '152621*' and [Major Category] &amp;lt; 15400000 and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Net Bookvalue] = 0&lt;/SPAN&gt;, 'Other')) as [Depreciated Category]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 14:36:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972219#M332692</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-27T14:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972220#M332693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If([Major Category]='152621*' AND [Net Bookvalue]= '0', 'IT',&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Wildmatch([Major Category],'152621*')=0 AND [Major Category] &amp;lt; '15400000' AND [Net Bookvalue] = '0', 'Other')) AS [Depreciated Category]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 14:37:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972220#M332693</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-10-27T14:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972221#M332694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try like below:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;If(&lt;STRONG&gt; WildMatch([Major Category],'152621*')&lt;/STRONG&gt; AND [Net Bookvalue]= '0', 'IT',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(&lt;STRONG&gt;NOT &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;WildMatch([Major Category],'152621*')&lt;/SPAN&gt; &lt;/STRONG&gt;AND [Major Category] &amp;lt; '15400000' AND [Net Bookvalue] = '0', 'Other')) AS [Depreciated Category]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 14:52:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972221#M332694</guid>
      <dc:creator />
      <dc:date>2015-10-27T14:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972222#M332695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue was with the first if statement - the 152621* did not work to identify IT assets&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 15:22:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972222#M332695</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-27T15:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Calculated Dimension - Multiple Conditions in Multiple IF Statements in LOAD</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972223#M332696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not WildMatch() can be deceptive. Make sure there are no Nulls in Major Category.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look here: &lt;A href="https://community.qlik.com/thread/187293"&gt;Null Value with Match/WildMatch and Like&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Oct 2015 15:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Calculated-Dimension-Multiple-Conditions-in-Multiple-IF/m-p/972223#M332696</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-27T15:24:51Z</dc:date>
    </item>
  </channel>
</rss>

