<?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: data removal in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2504636#M103811</link>
    <description>&lt;P&gt;your question is not clear, can you put some sample data and expected ouput like in tabular form rather than explaing&amp;nbsp; verbally? thnx&lt;/P&gt;</description>
    <pubDate>Wed, 05 Feb 2025 15:04:48 GMT</pubDate>
    <dc:creator>Qrishna</dc:creator>
    <dc:date>2025-02-05T15:04:48Z</dc:date>
    <item>
      <title>data removal</title>
      <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2503886#M103680</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;i want to removing any existing data and restricting any future data for the country /&lt;BR /&gt;region – ‘China’ on Dashboard&lt;/P&gt;
&lt;P&gt;Entity :&lt;/P&gt;
&lt;P&gt;-&lt;/P&gt;
&lt;P&gt;BBC&lt;/P&gt;
&lt;P&gt;BBL (Chin) LTD&lt;/P&gt;
&lt;P&gt;Unknown&lt;/P&gt;
&lt;P&gt;conditions are below:&lt;BR /&gt;Entity :&lt;BR /&gt;'- '&amp;nbsp; &amp;nbsp;We don’t want to report if the entity is “-“ and country is China.If the legal entity is ‘-’ and the country is not equal to China we will still need it in dashboard.&lt;/P&gt;
&lt;P&gt;BBC ----- We don’t want to report if the legal entity is “BBC“ and country is China.If the legal entity is ‘BBC’ and the country is not equal to China we will still need it in dashboard.&lt;BR /&gt;&lt;BR /&gt;BBL (Chin) LTD ----- Retain any record for Entity ‘BBL (Chin) LTD’ irrespective of Country name, even if it is for China as Country&lt;/P&gt;
&lt;P&gt;Unknown ---- Retain for all countries, even if the country is China.&lt;/P&gt;
&lt;P&gt;i want to write condition in scripting&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 07:04:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/data-removal/m-p/2503886#M103680</guid>
      <dc:creator>Manni_SM</dc:creator>
      <dc:date>2025-01-31T07:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: data removal</title>
      <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2503939#M103687</link>
      <description>&lt;P&gt;It sounds like you just need to add a WHERE clause to your LOAD statement to exclude the data you don't want.&amp;nbsp;Something like this should work:&lt;/P&gt;
&lt;P&gt;WHERE NOT((ISNULL(Entity) OR Entity='BBC') AND Country='China')&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jan 2025 11:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/data-removal/m-p/2503939#M103687</guid>
      <dc:creator>Ben_P</dc:creator>
      <dc:date>2025-01-31T11:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: data removal</title>
      <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2504624#M103809</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A id="link_11" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.qlik.com/t5/user/viewprofilepage/user-id/18555" target="_self" aria-label="View Profile of Ben_P" aria-describedby="userProfileCard-18555"&gt;&lt;SPAN class=""&gt;Ben_P&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp; &amp;nbsp;thank you .&lt;/P&gt;
&lt;P&gt;but i&amp;nbsp; &amp;nbsp;have country table .&amp;nbsp; so customer is asked to use mapping table instead of where condition as&amp;nbsp; in future we want to include more countries to remove .&lt;/P&gt;
&lt;P&gt;how to write the script with mapping table ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 14:24:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/data-removal/m-p/2504624#M103809</guid>
      <dc:creator>Manni_SM</dc:creator>
      <dc:date>2025-02-05T14:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: data removal</title>
      <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2504636#M103811</link>
      <description>&lt;P&gt;your question is not clear, can you put some sample data and expected ouput like in tabular form rather than explaing&amp;nbsp; verbally? thnx&lt;/P&gt;</description>
      <pubDate>Wed, 05 Feb 2025 15:04:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/data-removal/m-p/2504636#M103811</guid>
      <dc:creator>Qrishna</dc:creator>
      <dc:date>2025-02-05T15:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: data removal</title>
      <link>https://community.qlik.com/t5/App-Development/data-removal/m-p/2506300#M104153</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/69827"&gt;@Ben&lt;/a&gt;&amp;nbsp;&amp;nbsp;@&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28038" target="_blank"&gt;marcus_sommer&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;i want this should be converted to SQL where condition how to change qlik where condition to sql ?&lt;/P&gt;
&lt;P&gt;WHERE NOT((ISNULL(Entity") OR "Entity"='BUS' or "Entity"='BBC' or "Entity"='BANK China' or &lt;BR /&gt;"Entity"='Hb Bank China' or &lt;BR /&gt;"Entity"='Hb GBL&amp;nbsp; MGT (Chi) LTD') AND "Country "='&lt;SPAN&gt;China&lt;/SPAN&gt;');&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2025 09:29:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/data-removal/m-p/2506300#M104153</guid>
      <dc:creator>Manni_SM</dc:creator>
      <dc:date>2025-02-19T09:29:55Z</dc:date>
    </item>
  </channel>
</rss>

