<?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 condition to include certain values and exclude some values in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968311#M351</link>
    <description>&lt;P&gt;map_codes:&lt;BR /&gt;Load * Inline [key, value&lt;BR /&gt;A55, yes&lt;BR /&gt;A56, yes&lt;BR /&gt;A57, yes&lt;BR /&gt;A58, yes&lt;BR /&gt;A59, yes&lt;BR /&gt;A60, yes&lt;BR /&gt;A61, yes&lt;BR /&gt;A62, yes&lt;BR /&gt;A63, yes&lt;BR /&gt;A64, yes&lt;BR /&gt;A65, yes&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Load ApplyMap('map_codes', Subfield(Codes, '.', 1), 'no') as [flag column]&lt;BR /&gt;...&lt;/P&gt;</description>
    <pubDate>Fri, 12 Aug 2022 14:46:46 GMT</pubDate>
    <dc:creator>romansysyuk</dc:creator>
    <dc:date>2022-08-12T14:46:46Z</dc:date>
    <item>
      <title>if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968270#M348</link>
      <description>&lt;P&gt;Hi I'm trying to write an if condition, here A55 also includes A55.1,A55.2 and so on, I would like to include A89.91 and exclude A64.3, please advise&lt;/P&gt;
&lt;P&gt;=if(Match(Left("Codes",3),&lt;BR /&gt;'A55',&lt;BR /&gt;'A56',&lt;BR /&gt;'A57','A58','A59','A60','A61','A62','A63','A64',&lt;BR /&gt;'A65',&lt;BR /&gt;),'yes','no')&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968270#M348</guid>
      <dc:creator>smanas</dc:creator>
      <dc:date>2024-11-15T22:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968305#M350</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/193657"&gt;@smanas&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Maybe this:&lt;/P&gt;
&lt;P&gt;=if(Match( Left(ABISCA,3),&lt;BR /&gt;'A55',&lt;BR /&gt;'A56',&lt;BR /&gt;'A57','A58','A59','A60','A61','A62','A63','A64',&lt;BR /&gt;'A65',&lt;BR /&gt;) and ABISCA &amp;lt;&amp;gt; 'A64.3',&lt;BR /&gt;'yes',&lt;BR /&gt;if( ABISCA = 'A89.91',&lt;BR /&gt;'yes','no'&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;I hope it can help.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 14:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968305#M350</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2022-08-12T14:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968311#M351</link>
      <description>&lt;P&gt;map_codes:&lt;BR /&gt;Load * Inline [key, value&lt;BR /&gt;A55, yes&lt;BR /&gt;A56, yes&lt;BR /&gt;A57, yes&lt;BR /&gt;A58, yes&lt;BR /&gt;A59, yes&lt;BR /&gt;A60, yes&lt;BR /&gt;A61, yes&lt;BR /&gt;A62, yes&lt;BR /&gt;A63, yes&lt;BR /&gt;A64, yes&lt;BR /&gt;A65, yes&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;Load ApplyMap('map_codes', Subfield(Codes, '.', 1), 'no') as [flag column]&lt;BR /&gt;...&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 14:46:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968311#M351</guid>
      <dc:creator>romansysyuk</dc:creator>
      <dc:date>2022-08-12T14:46:46Z</dc:date>
    </item>
    <item>
      <title>Re: if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968345#M352</link>
      <description>&lt;P&gt;=if(Match(Left('ABCD',3),&lt;BR /&gt;'A55',&lt;BR /&gt;'A56',&lt;BR /&gt;'A57','A58','A59','A60','A61','A62','A63','A64',&lt;BR /&gt;'A65','A89.91',&lt;BR /&gt;),'yes', if(Match(Left('ABCD',3),'A64.3'),'no'))&lt;/P&gt;
&lt;P&gt;Hello &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/112"&gt;@agigliotti&lt;/a&gt;&amp;nbsp;, is this correct?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 15:59:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1968345#M352</guid>
      <dc:creator>smanas</dc:creator>
      <dc:date>2022-08-12T15:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1970168#M362</link>
      <description>&lt;P&gt;Did you check my suggestion?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2022 09:38:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1970168#M362</guid>
      <dc:creator>agigliotti</dc:creator>
      <dc:date>2022-08-18T09:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: if condition to include certain values and exclude some values</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1970836#M367</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/112"&gt;@agigliotti&lt;/a&gt;&amp;nbsp; it worked thanks a lot&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 16:33:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/if-condition-to-include-certain-values-and-exclude-some-values/m-p/1970836#M367</guid>
      <dc:creator>smanas</dc:creator>
      <dc:date>2022-08-19T16:33:17Z</dc:date>
    </item>
  </channel>
</rss>

