<?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: Expression to Replace in Reporting Service &amp; Alerting</title>
    <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2005062#M450</link>
    <description>&lt;P&gt;For this one already solve, i just use the if&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF(INVENTORY_STATUS=1, 'UNRESTRICTED',IF(INVENTORY_STATUS='6DMG', 'BLOCKED',IF(INVENTORY_STATUS='6EXP', 'BLOCKED',IF(INVENTORY_STATUS='6QRN', 'QURANTINE', ''))))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for the support really need to learn a lot.&lt;/P&gt;</description>
    <pubDate>Wed, 16 Nov 2022 07:27:59 GMT</pubDate>
    <dc:creator>Eduard23</dc:creator>
    <dc:date>2022-11-16T07:27:59Z</dc:date>
    <item>
      <title>Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002881#M438</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;Currently im working in a report and i need expression to use to get the expected result.&lt;/P&gt;
&lt;P&gt;this is the table below and expected result&lt;/P&gt;
&lt;TABLE width="298"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="125"&gt;Inventory Status&lt;/TD&gt;
&lt;TD width="173"&gt;Expected Result&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;1&lt;/TD&gt;
&lt;TD&gt;UNRESTRICTED&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6EXP&lt;/TD&gt;
&lt;TD&gt;BLOCKED&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6DMG&lt;/TD&gt;
&lt;TD&gt;BLOCKED&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;6QRN&lt;/TD&gt;
&lt;TD&gt;QUARANTINE&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Thu, 10 Nov 2022 09:00:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002881#M438</guid>
      <dc:creator>Eduard23</dc:creator>
      <dc:date>2022-11-10T09:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002883#M439</link>
      <description>&lt;P&gt;Hi, you can use a mapping table:&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/sense/May2022/Subsystems/Hub/Content/Sense_Hub/Scripting/MappingFunctions/ApplyMap.htm" target="_blank"&gt;https://help.qlik.com/en-US/sense/May2022/Subsystems/Hub/Content/Sense_Hub/Scripting/MappingFunctions/ApplyMap.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 09:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002883#M439</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-10T09:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002887#M440</link>
      <description>&lt;P&gt;Applymap is not correcting seems the function is not applicable&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 09:08:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002887#M440</guid>
      <dc:creator>Eduard23</dc:creator>
      <dc:date>2022-11-10T09:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002900#M441</link>
      <description>&lt;P&gt;Applymap is to use in the app, so your repot uses the table with the expect result column, instead of Inventory Status.&lt;/P&gt;
&lt;P&gt;If you are not refering to this try giving more info about your question, like where are you using this data, or the current configuration&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 09:25:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002900#M441</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-10T09:25:41Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002902#M442</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Use the below expression&lt;/P&gt;
&lt;P&gt;=if(WildMatch(InventoryStatus,'1'),'UNRESTRICTED',&lt;BR /&gt;if(WildMatch(InventoryStatus,'6EXP'),'BLOCKED',&lt;BR /&gt;if(WildMatch(InventoryStatus,'6DMG'),'BLOCKED',&lt;BR /&gt;if(WildMatch(InventoryStatus,'6QRN'),'QUARANTINE','-')))&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;SK&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 09:27:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002902#M442</guid>
      <dc:creator>Saurabh_K14999</dc:creator>
      <dc:date>2022-11-10T09:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002908#M443</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;Hi, and what's not working with that expression?&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRIKE&gt;maybe you need to add some * like&amp;nbsp;if(WildMatch(InventoryStatus,'6EXP*'),'BLOCKED',&lt;/STRIKE&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Edit: Sorry&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/167211"&gt;@Saurabh_K14999&lt;/a&gt;, I thought I was answering to the initial poster.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 10:18:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2002908#M443</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-11-10T10:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Expression to Replace</title>
      <link>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2005062#M450</link>
      <description>&lt;P&gt;For this one already solve, i just use the if&amp;nbsp;&lt;/P&gt;
&lt;P&gt;IF(INVENTORY_STATUS=1, 'UNRESTRICTED',IF(INVENTORY_STATUS='6DMG', 'BLOCKED',IF(INVENTORY_STATUS='6EXP', 'BLOCKED',IF(INVENTORY_STATUS='6QRN', 'QURANTINE', ''))))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for the support really need to learn a lot.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2022 07:27:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Reporting-Service-Alerting/Expression-to-Replace/m-p/2005062#M450</guid>
      <dc:creator>Eduard23</dc:creator>
      <dc:date>2022-11-16T07:27:59Z</dc:date>
    </item>
  </channel>
</rss>

