<?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: script help in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507783#M104401</link>
    <description>&lt;P&gt;Hi!&lt;BR /&gt;Maybe you can achieve this using Grouping (Concat) and Wildmatch to mark leases that contain "Market Review", and then exclude them?&lt;/P&gt;
&lt;P&gt;Data:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;lease, review, date&lt;BR /&gt;24000445, Initial Rent, 10/12/2018&lt;BR /&gt;24000445, Market Review, 10/12/2018&lt;BR /&gt;28939933, Initial Rent, 09/04/2027&lt;BR /&gt;26907933, Market Review, 05/10/2029&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;TempFlag:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD &lt;BR /&gt;lease, &lt;BR /&gt;Concat(review, '|') AS review_concat&lt;BR /&gt;Resident Data&lt;BR /&gt;GROUP BY lease;&lt;/P&gt;
&lt;P&gt;Final:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD &lt;BR /&gt;D.lease, &lt;BR /&gt;D.review, &lt;BR /&gt;D.date&lt;BR /&gt;Resident Data AS D&lt;BR /&gt;WHERE NOT EXISTS (&lt;BR /&gt;'FlaggedLease', lease&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;DROP TABLE Data, TempFlag;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2025 10:03:24 GMT</pubDate>
    <dc:creator>diegozecchini</dc:creator>
    <dc:date>2025-02-28T10:03:24Z</dc:date>
    <item>
      <title>script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507734#M104386</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Please help me equivalent way to get this code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Wildmatch(Window(Concat("term type"),"Lease ref.L"),'*Rent Indexation Review*') as Del&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks..&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507734#M104386</guid>
      <dc:creator>Krish2459_58</dc:creator>
      <dc:date>2025-02-28T06:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507740#M104389</link>
      <description>&lt;P&gt;expression which you provided is from which tool??&lt;/P&gt;
&lt;P&gt;what window() do??&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Prashant Sangle&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507740#M104389</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2025-02-28T06:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507744#M104391</link>
      <description>&lt;P&gt;What are you trying to achieve? I don't think you can use concat within the window function, and I also wouldn't think you can use the window function within wildmatch.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 06:51:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507744#M104391</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2025-02-28T06:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507747#M104393</link>
      <description>&lt;P&gt;Window is a qlik function.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/WindowFunctions/Window.htm#:~:text=Window()%20performs%20calculations%20from,or%20minimum%20within%20the%20column" target="_blank"&gt;https://help.qlik.com/en-US/cloud-services/Subsystems/Hub/Content/Sense_Hub/Scripting/WindowFunctions/Window.htm#:~:text=Window()%20performs%20calculations%20from,or%20minimum%20within%20the%20column&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:09:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507747#M104393</guid>
      <dc:creator>Krish2459_58</dc:creator>
      <dc:date>2025-02-28T07:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507748#M104394</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have data as below. Here I have to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;exclude&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;dates where&amp;nbsp;&lt;STRONG&gt;review =&amp;nbsp;Market Review&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;But in the below example&amp;nbsp;&lt;STRONG&gt;24000445&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;shared both&amp;nbsp;Initial Rent and&amp;nbsp;&amp;nbsp;Market Review which I have to exclude&amp;nbsp;24000445.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE border="0" width="693" cellspacing="0" cellpadding="0"&gt;&lt;COLGROUP&gt;&lt;COL span="3" width="231" /&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="231" height="20" class="xl65"&gt;lease&lt;/TD&gt;
&lt;TD width="231" class="xl66"&gt;review&lt;/TD&gt;
&lt;TD width="231" class="xl66"&gt;date&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="231" height="20" align="right" class="xl67"&gt;24000445&lt;/TD&gt;
&lt;TD width="231" class="xl69"&gt;Initial Rent&lt;/TD&gt;
&lt;TD width="231" align="right" class="xl68"&gt;10/12/2018&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="231" height="20" align="right" class="xl67"&gt;24000445&lt;/TD&gt;
&lt;TD width="231" class="xl69"&gt;Market Review&lt;/TD&gt;
&lt;TD width="231" align="right" class="xl68"&gt;10/12/2018&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="20" align="right"&gt;28939933&lt;/TD&gt;
&lt;TD width="231" class="xl69"&gt;Initial Rent&lt;/TD&gt;
&lt;TD width="231" align="right" class="xl68"&gt;09/04/2027&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD height="20" align="right"&gt;26907933&lt;/TD&gt;
&lt;TD width="231" class="xl69"&gt;Market Review&lt;/TD&gt;
&lt;TD width="231" align="right" class="xl68"&gt;05/10/2029&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Required output:&lt;/STRONG&gt;&lt;/P&gt;
&lt;TABLE border="0" width="690px" cellspacing="0" cellpadding="0"&gt;&lt;COLGROUP&gt;&lt;COL span="3" width="231" /&gt;&lt;/COLGROUP&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="230.344px" height="20" class="xl65"&gt;lease&lt;/TD&gt;
&lt;TD width="230.281px" class="xl66"&gt;review&lt;/TD&gt;
&lt;TD width="230.375px" class="xl66"&gt;date&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="230.344px" height="20" align="right"&gt;28939933&lt;/TD&gt;
&lt;TD width="230.281px" class="xl68"&gt;Initial Rent&lt;/TD&gt;
&lt;TD width="230.375px" align="right" class="xl67"&gt;09/04/2027&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:10:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507748#M104394</guid>
      <dc:creator>Krish2459_58</dc:creator>
      <dc:date>2025-02-28T07:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507752#M104396</link>
      <description>&lt;P&gt;I used this script and it's working in qlik DEV 2024 version. But the PROD version is still 2022 version and this Window function is not available.&lt;/P&gt;
&lt;P&gt;We planned PROD upgrade on May 2025. So I have to re-create this solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Data:&lt;BR /&gt;Load&lt;BR /&gt;*,&lt;BR /&gt;Wildmatch(Window(Concat(review),lease),'*Market Review*') as Del&lt;BR /&gt;Inline [&lt;BR /&gt;lease ,review, date&lt;BR /&gt;24000445, Initial Rent, 10/12/2018&lt;BR /&gt;24000445, Market Review, 10/12/2018&lt;BR /&gt;28939933, Initial Rent, 09/04/2027&lt;BR /&gt;26907933, Market Review, 05/10/2029]&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;NoConcatenate&lt;BR /&gt;&lt;BR /&gt;Final:&lt;BR /&gt;Load&lt;BR /&gt;lease,&lt;BR /&gt;review,&lt;BR /&gt;date&lt;BR /&gt;Resident Data&lt;BR /&gt;where Del&amp;lt;&amp;gt;1;&lt;BR /&gt;&lt;BR /&gt;drop table Data;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:20:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507752#M104396</guid>
      <dc:creator>Krish2459_58</dc:creator>
      <dc:date>2025-02-28T07:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507753#M104397</link>
      <description>&lt;P&gt;Ah, so you can use concat within window like that - interesting!&lt;/P&gt;
&lt;P&gt;Maybe like this to remove the window function:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;load lease, review, date, wildmatch(revconcat, '*Market Review*') as Del;&lt;BR /&gt;left join load lease, concat(review) as revconcat group by lease;&lt;BR /&gt;load * inline [&lt;BR /&gt;lease, review, date&lt;BR /&gt;24000445, Initial Rent, 10/12/2018&lt;BR /&gt;...&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 07:30:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507753#M104397</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2025-02-28T07:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507773#M104398</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/175513"&gt;@Krish2459_58&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Isn't this what you are searching for ?&lt;/P&gt;
&lt;P&gt;TMP:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load lease as lease_tmp ,review as review_tmp, date as date_tmp Resident Data Where review = 'Market Review';&lt;/P&gt;
&lt;P&gt;Final:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load * Resident Data Where not Exists(lease_tmp,lease);&lt;/P&gt;
&lt;P&gt;drop table Data,TMP;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 08:50:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507773#M104398</guid>
      <dc:creator>BPiotrowski</dc:creator>
      <dc:date>2025-02-28T08:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: script help</title>
      <link>https://community.qlik.com/t5/App-Development/script-help/m-p/2507783#M104401</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;Maybe you can achieve this using Grouping (Concat) and Wildmatch to mark leases that contain "Market Review", and then exclude them?&lt;/P&gt;
&lt;P&gt;Data:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;lease, review, date&lt;BR /&gt;24000445, Initial Rent, 10/12/2018&lt;BR /&gt;24000445, Market Review, 10/12/2018&lt;BR /&gt;28939933, Initial Rent, 09/04/2027&lt;BR /&gt;26907933, Market Review, 05/10/2029&lt;BR /&gt;];&lt;/P&gt;
&lt;P&gt;TempFlag:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD &lt;BR /&gt;lease, &lt;BR /&gt;Concat(review, '|') AS review_concat&lt;BR /&gt;Resident Data&lt;BR /&gt;GROUP BY lease;&lt;/P&gt;
&lt;P&gt;Final:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;LOAD &lt;BR /&gt;D.lease, &lt;BR /&gt;D.review, &lt;BR /&gt;D.date&lt;BR /&gt;Resident Data AS D&lt;BR /&gt;WHERE NOT EXISTS (&lt;BR /&gt;'FlaggedLease', lease&lt;BR /&gt;);&lt;/P&gt;
&lt;P&gt;DROP TABLE Data, TempFlag;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2025 10:03:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/script-help/m-p/2507783#M104401</guid>
      <dc:creator>diegozecchini</dc:creator>
      <dc:date>2025-02-28T10:03:24Z</dc:date>
    </item>
  </channel>
</rss>

