<?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: Nested if Condition in Script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992748#M978030</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on your condition and your data, the second and the third condition will never get processed. In order to see "Test1" and "Test2", you should have some Two Wheelers and Three Wheelers with Level other than Level1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Aug 2015 15:43:56 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2015-08-25T15:43:56Z</dc:date>
    <item>
      <title>Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992745#M978027</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;I am new to qlikview. I used nested if conditions in my script. But some of the conditions doesnt work. (Test1 and Test2, mentioned in the script)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;LOAD Product,&lt;/P&gt;&lt;P&gt;if((Product='Two Wheelers' or Product='Three Wheelers') and Level='Level1','Test3',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Two Wheelers','Test1',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Three Wheelers','Test2'))) as New_Skill,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Level,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the first condition satisfies , so it not performing the other conditions. But i need Test1 and Test2 in the New_Skill Field. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Please find the attachment and help me sort out this issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 12:39:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992745#M978027</guid>
      <dc:creator />
      <dc:date>2015-08-25T12:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992746#M978028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand you correctly and you need more values per row for the New_Skill field you can use a crosstable load, something like (Also see attached)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;LOAD Product,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Level,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Sample.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CrossTable (New_Skill,Product,1) load&lt;/P&gt;&lt;P&gt;RowNo() As Id,&lt;/P&gt;&lt;P&gt;if((Product='Two Wheelers' or Product='Three Wheelers') and Level='Level1',Product) as Test3,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Two Wheelers',Product) as Test1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Three Wheelers',Product) as Test2&lt;/P&gt;&lt;P&gt;resident Sample;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 15:35:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992746#M978028</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-08-25T15:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992747#M978029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IS this what you are expecting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96942_Capture1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 15:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992747#M978029</guid>
      <dc:creator>Qrishna</dc:creator>
      <dc:date>2015-08-25T15:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992748#M978030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Based on your condition and your data, the second and the third condition will never get processed. In order to see "Test1" and "Test2", you should have some Two Wheelers and Three Wheelers with Level other than Level1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 15:43:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992748#M978030</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2015-08-25T15:43:56Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992749#M978031</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;Sample:&lt;/P&gt;&lt;P&gt;LOAD Product,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Two Wheelers' and Level='Level1','Test3',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Three Wheelers' and Level='Level1','Test3',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Two Wheelers','Test1',&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Three Wheelers','Test2')))) as New_Skill,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Level,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Sample.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the above code.&lt;/P&gt;&lt;P&gt;Please see attached qvw also. To check I have added two rows in your excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Aug 2015 16:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992749#M978031</guid>
      <dc:creator />
      <dc:date>2015-08-25T16:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992750#M978032</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;product_tbl:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Product,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; if(Product='Two Wheelers' and Level='Level1','Test3',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; if(Product='Three Wheelers' and Level='Level1','Test3',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; if(Product='Two Wheelers','Test1',&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; if(Product='Three Wheelers','Test2')))) as New_Skill,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Level,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; Value&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sample.xlsx&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;your expecting output is like this??.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="224"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="17" width="82"&gt;Product&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="60"&gt;New_Skill&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="46"&gt;Level&lt;/TD&gt;&lt;TD class="xl63" style="border-left: none;" width="36"&gt;Value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;Four Wjeelers&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level2&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;JCB&lt;/TD&gt;&lt;TD class="xl65" style="border-top: none; border-left: none;"&gt; &lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level3&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;Three Wheelers&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Test2&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level3&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;250&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;Three Wheelers&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Test3&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level1&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;Two Wheelers&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Test1&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level2&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="17" style="border-top: none;"&gt;Two Wheelers&lt;/TD&gt;&lt;TD class="xl66" style="border-top: none; border-left: none;"&gt;Test3&lt;/TD&gt;&lt;TD class="xl64" style="border-top: none; border-left: none;"&gt;Level1&lt;/TD&gt;&lt;TD align="right" class="xl65" style="border-top: none; border-left: none;"&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 04:17:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992750#M978032</guid>
      <dc:creator>pratap6699</dc:creator>
      <dc:date>2015-08-26T04:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992751#M978033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; if(Product='Two Wheelers' and Level='Level1','Test3',&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;if(Product='Three Wheelers' and Level='Level1','Test3',&lt;/P&gt;
&lt;P&gt;if(Product='Two Wheelers','Test1',&lt;/P&gt;
&lt;P&gt;if(Product='Three Wheelers','Test2')))) as New_Skill,&amp;nbsp;&amp;nbsp; &lt;/P&gt;


&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Logically identical to the original post...&lt;/P&gt;&lt;P&gt;See Oleg Troyansky's post&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 05:49:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992751#M978033</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-26T05:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992752#M978034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply. Actually the Linking field here is product. But in my case both tables are linked by two fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Example : ProductID&amp;amp;'-'&amp;amp;CategoryID.&lt;/P&gt;&lt;P&gt;I am not able to bring this key field in the crosstable . I hope you can understand my response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 05:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992752#M978034</guid>
      <dc:creator />
      <dc:date>2015-08-26T05:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992753#M978035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There's nothing wrong with your script. You just have no data in your source sample that satisfies the conditions for Test2 and Test3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 06:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992753#M978035</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-26T06:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992754#M978036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes i know there is no data fro Test 2 and Test 3. Actually the Cross table concept is correct. It works. But the problem is , not able to bring the key fields in the cross table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 06:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992754#M978036</guid>
      <dc:creator />
      <dc:date>2015-08-26T06:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992755#M978037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see nothing in your original question which implies a cross table load is required.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 06:35:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992755#M978037</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-26T06:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992756#M978038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please provide your full data document so that it would be easier to provide a solution otherwise it will be a guess work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 06:39:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992756#M978038</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-08-26T06:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992757#M978039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonathan,&lt;/P&gt;&lt;P&gt;How you will get the attached word file output with my Original script. It is not possible. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 06:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992757#M978039</guid>
      <dc:creator />
      <dc:date>2015-08-26T06:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Nested if Condition in Script</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992758#M978040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The third parameter of the crosstable load defines how many fields from the top are loaded as qualifier fields. So in this case instead of the rowno, you can use your key (and name it to the other linking field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CrossTable (New_Skill,Product,1) load&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;ProductID&amp;amp;'-'&amp;amp;CategoryID&lt;/SPAN&gt; As Id,&lt;/P&gt;&lt;P&gt;if((Product='Two Wheelers' or Product='Three Wheelers') and Level='Level1',Product) as Test3,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Two Wheelers',Product) as Test1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; if(Product='Three Wheelers',Product) as Test2&lt;/P&gt;&lt;P&gt;resident Sample;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 08:36:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-if-Condition-in-Script/m-p/992758#M978040</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-08-26T08:36:54Z</dc:date>
    </item>
  </channel>
</rss>

