<?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 in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921793#M75879</link>
    <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;I had change the type of Columns to Integer and tried this Formula:&lt;/P&gt;
&lt;P&gt;=if(RangeSum([DWH:&lt;BR /&gt;Pentaho Abbruch],[DWH:&lt;BR /&gt;Qlikview Abbruch])=2,'Qlikview and Pentaho',if([DWH:&lt;BR /&gt;Qlikview Abbruch]=1,'Qlikview', if([DWH:&lt;BR /&gt;Pentaho Abbruch]=1,'Pentaho','Non of Abov')))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the Error just write :&amp;nbsp; Error in expression&lt;/P&gt;
&lt;P&gt;and in my table for all case it just show "Non of Abov"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 24 Apr 2022 13:17:31 GMT</pubDate>
    <dc:creator>Samanehsorournejad</dc:creator>
    <dc:date>2022-04-24T13:17:31Z</dc:date>
    <item>
      <title>Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921716#M75861</link>
      <description>&lt;P&gt;Hi Every body,&lt;/P&gt;
&lt;P&gt;I want try to write the nested if with this Conditions:&lt;/P&gt;
&lt;P&gt;if just column&amp;nbsp;[DWH:Pentaho Abbruch]=1 then 'Pentaho' else if column&amp;nbsp;[DWH:Qlikview Abbruch]=1 then 'Qlikeview'&lt;/P&gt;
&lt;P&gt;else if both of them are equal 1 then 'Pentaho and Qlik View'. I had write this formula but I could not understand what is my Fault. it gives me Error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If( [DWH:&lt;BR /&gt;Pentaho Abbruch]=1, 'Pentaho',if([DWH:&lt;BR /&gt;Qlikview Abbruch]=1,'Qlikeview',if([DWH:&lt;BR /&gt;Pentaho Abbruch]=1 and [RZV:&lt;BR /&gt;Qlikview Abbruch]=1, 'Pentaho and Qlik View')))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 15:12:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921716#M75861</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-23T15:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921724#M75863</link>
      <description>&lt;P&gt;&lt;SPAN&gt;You logical order was incorrect, the if() will end after first condition that is true&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Try below&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;=if(rangesum([DWH:Pentaho Abbruch],[RZV:Qlikview Abbruch])=2,'Pentaho and Qlik View'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,if([DWH:Pentaho Abbruch]=1,'Pentaho'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,if([DWH:Qlikview&amp;nbsp;&amp;nbsp;Abbruch]=1,'Qlikeview','None of Above')))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 15:16:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921724#M75863</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-23T15:16:55Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921746#M75866</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;it did not unfortunately works. It shows for all cells&amp;nbsp;&amp;nbsp; 'None of Above'&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 16:50:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921746#M75866</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-23T16:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921747#M75867</link>
      <description>&lt;P&gt;are&amp;nbsp; the values actually numeric??&lt;/P&gt;
&lt;P&gt;what does isnum(&lt;STRONG&gt;&lt;SPAN&gt;[DWH:Pentaho Abbruch]). return ?&amp;nbsp; 0 means not numeric. , -1 means numeric&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 17:03:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921747#M75867</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-23T17:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921748#M75868</link>
      <description>&lt;P&gt;incase they are not numeric try below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;=if(index([DWH:Pentaho Abbruch],'1') and index([RZV:Qlikview Abbruch],'1') ,'Pentaho and Qlik View'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,if(index([DWH:Pentaho Abbruch],'1'),'Pentaho'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,if(index([DWH:Qlikview&amp;nbsp;&amp;nbsp;Abbruch],'1'),'Qlikeview','None of Above')))&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Apr 2022 17:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921748#M75868</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-23T17:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921777#M75875</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;isnum(&lt;STRONG&gt;&lt;SPAN&gt;[DWH:Pentaho Abbruch])&amp;nbsp; return 0 for all rows execp the first rows that returns -1 and I had try to this: &lt;BR /&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;=if(index([DWH:Pentaho Abbruch],'1') and index([RZV:Qlikview Abbruch],'1') ,'Pentaho and Qlik View'&lt;/P&gt;
&lt;P&gt;,if(index([DWH:Pentaho Abbruch],'1'),'Pentaho'&lt;/P&gt;
&lt;P&gt;,if(index([DWH:Qlikview Abbruch],'1'),'Qlikeview','None of Above')))&lt;/P&gt;
&lt;P&gt;but again give me the error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 07:44:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921777#M75875</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-24T07:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921782#M75878</link>
      <description>&lt;P&gt;What is the error that you get ? Please post a screenshot or some sample data&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 08:36:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921782#M75878</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-24T08:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921793#M75879</link>
      <description>&lt;P&gt;Hi Vineeth,&lt;/P&gt;
&lt;P&gt;I had change the type of Columns to Integer and tried this Formula:&lt;/P&gt;
&lt;P&gt;=if(RangeSum([DWH:&lt;BR /&gt;Pentaho Abbruch],[DWH:&lt;BR /&gt;Qlikview Abbruch])=2,'Qlikview and Pentaho',if([DWH:&lt;BR /&gt;Qlikview Abbruch]=1,'Qlikview', if([DWH:&lt;BR /&gt;Pentaho Abbruch]=1,'Pentaho','Non of Abov')))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the Error just write :&amp;nbsp; Error in expression&lt;/P&gt;
&lt;P&gt;and in my table for all case it just show "Non of Abov"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 13:17:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921793#M75879</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-24T13:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921796#M75880</link>
      <description>&lt;P&gt;I think you are trying to add this as a dimension and not a measure&lt;/P&gt;
&lt;P&gt;For a calculated dimension, you need to wrap this in Aggr()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;=&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Aggr(&lt;/STRONG&gt;&lt;/EM&gt;if(index([DWH:Pentaho Abbruch],'1') and index([RZV:Qlikview Abbruch],'1') ,'Pentaho and Qlik View'&lt;/P&gt;
&lt;P&gt;,if(index([DWH:Pentaho Abbruch],'1'),'Pentaho'&lt;/P&gt;
&lt;P&gt;,if(index([DWH:Qlikview Abbruch],'1'),'Qlikeview','None of Above')))&lt;/P&gt;
&lt;P&gt;,&lt;EM&gt;&lt;STRONG&gt;SomeIdOrKeyField&lt;/STRONG&gt;&lt;/EM&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;SomeIdOrKeyField, this field needs to be at lowest granularity, that is row level&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 13:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921796#M75880</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-24T13:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921797#M75881</link>
      <description>&lt;P&gt;Hi Vineeth ,&lt;/P&gt;
&lt;P&gt;I had change the type of Columns to Integer and write the Formula in the Order that you at first told me and its Works,&lt;/P&gt;
&lt;P&gt;=if(rangesum([DWH:Pentaho Abbruch],[RZV:Qlikview Abbruch])=2,'Pentaho and Qlik View'&lt;/P&gt;
&lt;P&gt;,if([DWH:Pentaho Abbruch]=1,'Pentaho'&lt;/P&gt;
&lt;P&gt;,if([DWH:Qlikview Abbruch]=1,'Qlikeview','None of Above')))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;my Fault were:&lt;/P&gt;
&lt;P&gt;1- Orders of IF Condition&lt;/P&gt;
&lt;P&gt;2- Type of Column that should be Change in Integer&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks a lot Vineeth&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 14:21:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921797#M75881</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-24T14:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921798#M75882</link>
      <description>&lt;P&gt;Hi again Vineeth ,&lt;/P&gt;
&lt;P&gt;just another question, I don't Know exactly when I should write the Formula as Measure and when I should write it as Dimension?&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 14:23:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921798#M75882</guid>
      <dc:creator>Samanehsorournejad</dc:creator>
      <dc:date>2022-04-24T14:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF</title>
      <link>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921806#M75884</link>
      <description>&lt;P&gt;any fields that you would use aggregations functions such as Sum(), Count(), max(), min(), rangesum() etc ….&lt;/P&gt;
&lt;P&gt;are your measures&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dimensions are what you would group your measures by&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for examples sum(Sales) by Country&lt;/P&gt;
&lt;P&gt;So country is a dimension and sum(Sales) is your measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI value="1"&gt;
&lt;P&gt;&lt;I&gt;Dimensions&lt;/I&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;contain qualitative values (such as names, dates, or geographical data). You can use dimensions to categorize, segment, and reveal the details in your data. Dimensions affect the level of detail in the view.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI value="2"&gt;
&lt;P&gt;&lt;I&gt;Measures&lt;/I&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;contain numeric, quantitative values that you can measure. Measures can be aggregated. When you drag a measure into the view, Tableau applies an aggregation to that measure (by default).&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/February2022/Subsystems/Hub/Content/Sense_Hub/Scripting/AggregationFunctions/aggregation-functions.htm#:~:text=The%20family%20of%20functions%20known,clause%20in%20the%20script%20statement" target="_blank"&gt;https://help.qlik.com/en-US/sense/February2022/Subsystems/Hub/Content/Sense_Hub/Scripting/AggregationFunctions/aggregation-functions.htm#:~:text=The%20family%20of%20functions%20known,clause%20in%20the%20script%20statement&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 24 Apr 2022 15:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Nested-IF/m-p/1921806#M75884</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-04-24T15:31:33Z</dc:date>
    </item>
  </channel>
</rss>

