<?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: Dual if function in Qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951694#M78439</link>
    <description>&lt;P&gt;Thanks for your help&amp;nbsp; &lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;A href="https://get-vidmateapp.com/" target="_self"&gt;get-vidmateapp.com&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;A href="https://get-mobdroapk.com" target="_self"&gt;mobdro download&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 06 Jul 2022 18:39:12 GMT</pubDate>
    <dc:creator>rudesingh56</dc:creator>
    <dc:date>2022-07-06T18:39:12Z</dc:date>
    <item>
      <title>Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951407#M78410</link>
      <description>&lt;P&gt;Hello there,&lt;/P&gt;
&lt;P&gt;I have been playing around with if functions to change the background color of fields in my dashboard. Strangely enough this is working for 3 if statements:&lt;/P&gt;
&lt;P&gt;if(Scope='GREEN',RGB(152,251,152),if(Scope='ORANGE',RGB(255,215,0),if(Scope='RED',RGB(240,128,128))))&lt;/P&gt;
&lt;P&gt;However,&lt;/P&gt;
&lt;P&gt;I cant seem to get this right for 2 if statements.&lt;/P&gt;
&lt;P&gt;Can someone show me how to set this up for 2 if conditions within one sentence?&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 14:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951407#M78410</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2022-07-04T14:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951473#M78413</link>
      <description>&lt;P&gt;if(Scope='GREEN',RGB(152,251,152),if(Scope='ORANGE',RGB(255,215,0)))&lt;/P&gt;
&lt;P&gt;Though in this sort of scenario, you might want to consider using Match() instead of several if() statements.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Jul 2022 16:27:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951473#M78413</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-07-04T16:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951625#M78434</link>
      <description>&lt;P&gt;Hey thanks,&lt;/P&gt;
&lt;P&gt;Why should one use Match() instead of several if() statements?&lt;/P&gt;
&lt;P&gt;How would that look in this case?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 08:18:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951625#M78434</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2022-07-05T08:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951631#M78435</link>
      <description>&lt;P&gt;Pick(Match(Scope,'GREEN','ORANGE'),RGB(152,251,152),RGB(255,215,0)) for example.&lt;/P&gt;
&lt;P&gt;You can match as many values as you want and it comes out a lot cleaner than writing a bunch of nested if() statements, at least in my opinion (though nested if() statements will also work).&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 08:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951631#M78435</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2022-07-05T08:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951646#M78436</link>
      <description>&lt;P&gt;Cheers! Thanks for your help&lt;/P&gt;</description>
      <pubDate>Tue, 05 Jul 2022 08:51:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951646#M78436</guid>
      <dc:creator>ToinkToinkTigger</dc:creator>
      <dc:date>2022-07-05T08:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dual if function in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951694#M78439</link>
      <description>&lt;P&gt;Thanks for your help&amp;nbsp; &lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;A href="https://get-vidmateapp.com/" target="_self"&gt;get-vidmateapp.com&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="1 2 3 4 5 6 7"&gt;&lt;A href="https://get-mobdroapk.com" target="_self"&gt;mobdro download&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 18:39:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Dual-if-function-in-Qliksense/m-p/1951694#M78439</guid>
      <dc:creator>rudesingh56</dc:creator>
      <dc:date>2022-07-06T18:39:12Z</dc:date>
    </item>
  </channel>
</rss>

