<?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: Find the Overlap Call in the Same Day and Same Customer in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455028#M98376</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&lt;/P&gt;
&lt;P&gt;I clearly explained in the first message itself orange highlighted records to be displayed.&lt;/P&gt;</description>
    <pubDate>Wed, 22 May 2024 07:22:49 GMT</pubDate>
    <dc:creator>dineshm030</dc:creator>
    <dc:date>2024-05-22T07:22:49Z</dc:date>
    <item>
      <title>Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454704#M98330</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;I need to display the overlap call on same day and same customer with different positionid. For example, we have four calls for two days. But we need to display the overlap call (light orange highlighted) in the output.&lt;/P&gt;
&lt;P&gt;One positionid started the call with the customer at 9:30 AM whereas different position cannot start the call with same customer. We need to find this type of scenarios.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dineshm030_0-1716296796907.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/166514iF70BFD4FEE8243DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dineshm030_0-1716296796907.png" alt="dineshm030_0-1716296796907.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;LI-PRODUCT title="Qlik Sense Desktop" id="qlikSenseDesktop"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/46628"&gt;@sunny_talwar&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/17935"&gt;@MayilVahanan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 20:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454704#M98330</guid>
      <dc:creator>dineshm030</dc:creator>
      <dc:date>2024-11-15T20:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454737#M98335</link>
      <description>&lt;P&gt;in the script sort your data by customer, and ScheduleStart in ascending order&lt;BR /&gt;the using a preceeding load check if previous customer is the current customer and position id &amp;lt;&amp;gt; previous position id&amp;nbsp; then mark the row with 1 otherwise 0:&lt;BR /&gt;and your rows will be the ones where desired_row = 1&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ali_hijazi_1-1716300152562.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/166520i198F1913BB887F1C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ali_hijazi_1-1716300152562.png" alt="ali_hijazi_1-1716300152562.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ali_hijazi_0-1716300123819.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/166519iC18C8F0A57627DBB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ali_hijazi_0-1716300123819.png" alt="ali_hijazi_0-1716300123819.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV&gt;source:&lt;/DIV&gt;
&lt;DIV&gt;LOAD&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ActivityID,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleStart,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleEnd,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PositionId,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; "Customer ID",&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Team&lt;/DIV&gt;
&lt;DIV&gt;FROM [lib://TECHNICAL STORE QVDS/APP DATA/Overlap.xlsx]&lt;/DIV&gt;
&lt;DIV&gt;(ooxml, embedded labels, table is Sheet1);&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;sorted_source:&lt;/DIV&gt;
&lt;DIV&gt;NoConcatenate&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,if(RowNo() &amp;lt;&amp;gt; 1 and Previous("Customer ID") = "Customer ID" and Previous(PositionId) &amp;lt;&amp;gt; PositionId, 1,0) as desired_row;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;Resident source&lt;/DIV&gt;
&lt;DIV&gt;order by "Customer ID",ScheduleStart asc;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;drop table source;&lt;/DIV&gt;</description>
      <pubDate>Tue, 21 May 2024 14:03:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454737#M98335</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-21T14:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454744#M98336</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your response. We need to display only EEE &amp;amp; GGG row because the activities have been done same customer on same day that between the first call of scheduled start and scheduled end.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 May 2024 14:09:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454744#M98336</guid>
      <dc:creator>dineshm030</dc:creator>
      <dc:date>2024-05-21T14:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454815#M98353</link>
      <description>&lt;DIV&gt;source:&lt;/DIV&gt;
&lt;DIV&gt;LOAD&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ActivityID,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleStart,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleEnd,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PositionId,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; "Customer ID",&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Team&lt;/DIV&gt;
&lt;DIV&gt;FROM [lib://TECHNICAL STORE QVDS/APP DATA/Overlap.xlsx]&lt;/DIV&gt;
&lt;DIV&gt;(ooxml, embedded labels, table is Sheet1);&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;sorted_source:&lt;/DIV&gt;
&lt;DIV&gt;NoConcatenate&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,if(RowNo()=1 or "Customer ID" &amp;lt;&amp;gt; Previous("Customer ID"),1,0) as initiator_row&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,if(RowNo() &amp;lt;&amp;gt; 1 and num(DayStart(ScheduleStart)) = Previous(num(DayStart(ScheduleStart))) and Previous("Customer ID") = "Customer ID" and Previous(PositionId) &amp;lt;&amp;gt; PositionId, 1,0) as desired_row;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;Resident source&lt;/DIV&gt;
&lt;DIV&gt;order by "Customer ID",ScheduleStart asc;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;drop table source;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;intiator_mapping:Mapping&lt;/DIV&gt;
&lt;DIV&gt;Load "Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)) as key&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,188 as ok&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Resident sorted_source where desired_row = 1;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;final_source:&lt;/DIV&gt;
&lt;DIV&gt;NoConcatenate&lt;/DIV&gt;
&lt;DIV&gt;Load&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ActivityID,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleStart,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleEnd,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PositionId,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; "Customer ID",&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Team&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ,initiator_row&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ,if( IsNull(ApplyMap('intiator_mapping',"Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)),Null())),0,1) as desired_row&lt;/DIV&gt;
&lt;DIV&gt;//&amp;nbsp; &amp;nbsp; &amp;nbsp;,ApplyMap('intiator_mapping',"Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)),Null()) as test&lt;/DIV&gt;
&lt;DIV&gt;Resident sorted_source;&lt;/DIV&gt;
&lt;DIV&gt;drop table sorted_source;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ali_hijazi_0-1716308285769.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/166535iC54C9675319D6FF0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ali_hijazi_0-1716308285769.png" alt="ali_hijazi_0-1716308285769.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Tue, 21 May 2024 16:18:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454815#M98353</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-21T16:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454947#M98370</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;AAA and CCC should not come in the output. These calls have been done in the same day with same customer but different time zone. We need to find the overlap call within the time range.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 02:39:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454947#M98370</guid>
      <dc:creator>dineshm030</dc:creator>
      <dc:date>2024-05-22T02:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454949#M98371</link>
      <description>&lt;P&gt;How do you know the time zone in each row?&lt;/P&gt;
&lt;P&gt;What is the time range?&lt;/P&gt;
&lt;P&gt;Everytime I suggest a solution you give me additional conditions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 03:10:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2454949#M98371</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-22T03:10:53Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455028#M98376</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your reply.&lt;/P&gt;
&lt;P&gt;I clearly explained in the first message itself orange highlighted records to be displayed.&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:22:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455028#M98376</guid>
      <dc:creator>dineshm030</dc:creator>
      <dc:date>2024-05-22T07:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455044#M98381</link>
      <description>&lt;P&gt;so you mean by time zone AM or PM?&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2024 07:55:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455044#M98381</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-22T07:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455052#M98382</link>
      <description>&lt;DIV&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/16771"&gt;@dineshm030&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;the following script should solve your requirement&lt;/DIV&gt;
&lt;DIV&gt;source:&lt;/DIV&gt;
&lt;DIV&gt;LOAD&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ActivityID,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleStart,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleEnd,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PositionId,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; "Customer ID",&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Team&lt;/DIV&gt;
&lt;DIV&gt;FROM [lib://TECHNICAL STORE QVDS/APP DATA/Overlap.xlsx]&lt;/DIV&gt;
&lt;DIV&gt;(ooxml, embedded labels, table is Sheet1);&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;sorted_source:&lt;/DIV&gt;
&lt;DIV&gt;NoConcatenate&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,if(RowNo()=1 or "Customer ID" &amp;lt;&amp;gt; Previous("Customer ID"),1,0) as initiator_row&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,if(RowNo() &amp;lt;&amp;gt; 1 and AMPM = previous(AMPM) and&amp;nbsp; num(DayStart(ScheduleStart)) = Previous(num(DayStart(ScheduleStart))) and Previous("Customer ID") = "Customer ID" and Previous(PositionId) &amp;lt;&amp;gt; PositionId, 1,0) as desired_row;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Load *&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,right(Time( ScheduleStart, 'hh:mm:ss TT'),2) as AMPM&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Resident source&lt;/DIV&gt;
&lt;DIV&gt;order by "Customer ID",ScheduleStart asc;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;drop table source;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;intiator_mapping:Mapping&lt;/DIV&gt;
&lt;DIV&gt;Load "Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)) &amp;amp; '|' &amp;amp; right(Time( ScheduleStart, 'hh:mm:ss TT'),2) as key&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ,188 as ok&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Resident sorted_source where desired_row = 1;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;final_source:&lt;/DIV&gt;
&lt;DIV&gt;NoConcatenate&lt;/DIV&gt;
&lt;DIV&gt;Load&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ActivityID,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleStart,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ScheduleEnd,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; PositionId,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; "Customer ID",&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Team&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ,initiator_row&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; ,if( IsNull(ApplyMap('intiator_mapping',"Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)) &amp;amp; '|' &amp;amp; right(Time( ScheduleStart, 'hh:mm:ss TT'),2),Null())),0,1) as desired_row,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; right(Time( ScheduleStart, 'hh:mm:ss TT'),2) as AMPM&lt;/DIV&gt;
&lt;DIV&gt;//&amp;nbsp; &amp;nbsp; &amp;nbsp;,ApplyMap('intiator_mapping',"Customer ID" &amp;amp; '|' &amp;amp; num(daystart(ScheduleStart)),Null()) as test&lt;/DIV&gt;
&lt;DIV&gt;Resident sorted_source;&lt;/DIV&gt;
&lt;DIV&gt;drop table sorted_source;&lt;/DIV&gt;</description>
      <pubDate>Wed, 22 May 2024 08:10:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455052#M98382</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-22T08:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455774#M98458</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/216"&gt;@ali_hijazi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thanks for your response. We achieved it with your wonderful script. I tried with one more record which is getting in the output.&lt;/P&gt;
&lt;P&gt;Thank so much for your assistance.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dineshm030_0-1716479434751.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/166719i1D1CCABD31E36616/image-size/medium?v=v2&amp;amp;px=400" role="button" title="dineshm030_0-1716479434751.png" alt="dineshm030_0-1716479434751.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2024 15:52:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2455774#M98458</guid>
      <dc:creator>dineshm030</dc:creator>
      <dc:date>2024-05-23T15:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Find the Overlap Call in the Same Day and Same Customer</title>
      <link>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2457504#M98569</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/16771"&gt;@dineshm030&lt;/a&gt;&amp;nbsp;Anytime&lt;BR /&gt;I'm glad that I was able to help you&lt;BR /&gt;and sorry for any "rude" words &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;keep in touch&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 13:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-the-Overlap-Call-in-the-Same-Day-and-Same-Customer/m-p/2457504#M98569</guid>
      <dc:creator>ali_hijazi</dc:creator>
      <dc:date>2024-05-29T13:16:20Z</dc:date>
    </item>
  </channel>
</rss>

