<?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: If statement in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948752#M78195</link>
    <description>&lt;P&gt;That works..&lt;/P&gt;
&lt;P&gt;but what if we wanna print that&lt;/P&gt;
&lt;P&gt;like i want city field where city is portland and state is AZ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If({&amp;lt;city={'portland'}, state={'AZ'}&amp;gt;}City)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Will this works??&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Jun 2022 18:46:19 GMT</pubDate>
    <dc:creator>ajit_aarya</dc:creator>
    <dc:date>2022-06-27T18:46:19Z</dc:date>
    <item>
      <title>If statement</title>
      <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948738#M78193</link>
      <description>&lt;P&gt;This is my table,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And i need population count of portland from AZ state&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i Tried this&lt;/P&gt;
&lt;P&gt;Count(If(match(city, 'portland' and state, 'AZ') Population)) but its not working&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;city&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;state&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;population&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;portland&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;ME&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;10&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;chicago&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;IL&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;27&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;portland&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;AZ&lt;/TD&gt;
&lt;TD width="33.333333333333336%" height="25px"&gt;21&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;portland&lt;/TD&gt;
&lt;TD&gt;MI&lt;/TD&gt;
&lt;TD&gt;51&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Mon, 27 Jun 2022 18:16:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948738#M78193</guid>
      <dc:creator>ajit_aarya</dc:creator>
      <dc:date>2022-06-27T18:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948748#M78194</link>
      <description>&lt;P&gt;Try using Set Analysis instead, something like:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;city={'portland'}, state={'AZ'}&amp;gt;}Population)&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 18:39:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948748#M78194</guid>
      <dc:creator>Qlik_Eric_Thomas</dc:creator>
      <dc:date>2022-06-27T18:39:39Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948752#M78195</link>
      <description>&lt;P&gt;That works..&lt;/P&gt;
&lt;P&gt;but what if we wanna print that&lt;/P&gt;
&lt;P&gt;like i want city field where city is portland and state is AZ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If({&amp;lt;city={'portland'}, state={'AZ'}&amp;gt;}City)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Will this works??&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 18:46:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948752#M78195</guid>
      <dc:creator>ajit_aarya</dc:creator>
      <dc:date>2022-06-27T18:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948762#M78197</link>
      <description>&lt;P&gt;The Expression I gave should give you the population for Portland, AZ and just that. If you use that expression in a KPI, that's exactly what I will show.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you replaced the 'Population' field in the table with my expression, you should only see 1 row.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 19:17:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948762#M78197</guid>
      <dc:creator>Qlik_Eric_Thomas</dc:creator>
      <dc:date>2022-06-27T19:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948769#M78199</link>
      <description>&lt;P&gt;I want to locate a city in map chart with using both city name and state name.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;***Consider there is a city portland in ME state**&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;In map chart, There this location field,&lt;/P&gt;
&lt;P&gt;In chart, i want only &lt;STRONG&gt;portland&lt;/STRONG&gt; from &lt;STRONG&gt;ME&lt;/STRONG&gt; but there are few different &lt;STRONG&gt;portland&lt;/STRONG&gt;s&amp;nbsp;in different states,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When i am using a AND function like&lt;EM&gt; If(mixmatch(city,'Portland' and state,'ME'),City)&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;that syntax is not working&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2022 20:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/If-statement/m-p/1948769#M78199</guid>
      <dc:creator>ajit_aarya</dc:creator>
      <dc:date>2022-06-27T20:08:41Z</dc:date>
    </item>
  </channel>
</rss>

