<?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: How to write Nested If in Set Analysis? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061812#M17118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using it as Dimension, so i used the above one.It works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 May 2016 09:27:57 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-05-03T09:27:57Z</dc:date>
    <item>
      <title>How to write Nested If in Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061809#M17115</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 have a query like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(MajorSiteRegion in ('3.P.L','Corus','Fremont','India','Livermore','Metryx','San Jose','Silfex','Tualatin','Villach'),MajorSiteRegion)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Qlikview it wont allow IN function. How to write the same in Set Analysis or any other alternate way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub2u444&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 09:00:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061809#M17115</guid>
      <dc:creator />
      <dc:date>2016-05-03T09:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to write Nested If in Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061810#M17116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure where you are doing this. Is there any aggregation? If not then may using Match or WildMatch function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Match(MajorSiteRegion, &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;'3.P.L', 'Corus', 'Fremont', 'India', 'Livermore', 'Metryx', 'San Jose', 'Silfex', 'Tualatin', 'Villach'), &lt;/STRONG&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;MajorSiteRegion)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 09:02:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061810#M17116</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-03T09:02:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to write Nested If in Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061811#M17117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And if you're talking about set analysis then you can use something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({&amp;lt;MajorSiteRegion={'3.P.L','Corus','Fremont','India','Livermore','Metryx','San Jose','Silfex','Tualatin','Villach'}&amp;gt;} distinct MajorSiteRegion)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That means count the distinct values of MajorSiteRegion that match the values in the list. This useless example should return 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 09:21:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061811#M17117</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-05-03T09:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write Nested If in Set Analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061812#M17118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using it as Dimension, so i used the above one.It works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 May 2016 09:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-write-Nested-If-in-Set-Analysis/m-p/1061812#M17118</guid>
      <dc:creator />
      <dc:date>2016-05-03T09:27:57Z</dc:date>
    </item>
  </channel>
</rss>

