<?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 Use only Overlapping Months in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1671933#M50820</link>
    <description>&lt;P&gt;I have a requirements where I&amp;nbsp; have multiple extract dates in a single dataset and each extract date has multiple months .&lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;Extract Date = May 2019 has Data for May 2019, June 2019, July 2019 up to Dec 2019&lt;/P&gt;&lt;P&gt;Extract Date = Mar 2019 has Data for Mar 2019, Apr 2019 ,May 2019, June 2019 up to Oct 2019&lt;/P&gt;&lt;P&gt;The requirement is I need data for only overlapping months between the 2 extract dates . In this case the overlapping months will be May 2019 Until Oct 2019.&lt;/P&gt;&lt;P&gt;How can I accomplish this ? Idealy I would like to create some sort of a flag in the script to get the overlapping months between 2 extract Dates.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2020 01:43:39 GMT</pubDate>
    <dc:creator>Rehan</dc:creator>
    <dc:date>2020-02-04T01:43:39Z</dc:date>
    <item>
      <title>Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1671933#M50820</link>
      <description>&lt;P&gt;I have a requirements where I&amp;nbsp; have multiple extract dates in a single dataset and each extract date has multiple months .&lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;Extract Date = May 2019 has Data for May 2019, June 2019, July 2019 up to Dec 2019&lt;/P&gt;&lt;P&gt;Extract Date = Mar 2019 has Data for Mar 2019, Apr 2019 ,May 2019, June 2019 up to Oct 2019&lt;/P&gt;&lt;P&gt;The requirement is I need data for only overlapping months between the 2 extract dates . In this case the overlapping months will be May 2019 Until Oct 2019.&lt;/P&gt;&lt;P&gt;How can I accomplish this ? Idealy I would like to create some sort of a flag in the script to get the overlapping months between 2 extract Dates.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 01:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1671933#M50820</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-04T01:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1671980#M50832</link>
      <description>&lt;P&gt;First, load all possible Months from one source:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;NoConcatenate Load Distinct&lt;/P&gt;&lt;P&gt;MonthField&lt;/P&gt;&lt;P&gt;From YourSource1;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Second, load all possible months from the second source in a mapping table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table2_map:&lt;/P&gt;&lt;P&gt;Mapping Load Distinct&lt;/P&gt;&lt;P&gt;MonthField&lt;/P&gt;&lt;P&gt;’1’ as Flag&lt;/P&gt;&lt;P&gt;From YourSource2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Third, create a flag if a month is in both sources:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FlagTable:&lt;/P&gt;&lt;P&gt;NoConcatenate Load&lt;/P&gt;&lt;P&gt;MonthField,&lt;/P&gt;&lt;P&gt;ApplyMap(‘Table2_map’,MonthField,’0’) as Flag&lt;/P&gt;&lt;P&gt;Resident Table1;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Drop Table Table1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fourth, use the FlagTable to filter the overlapping Months:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;NoConcatenate Load&lt;/P&gt;&lt;P&gt;MonthField,&lt;/P&gt;&lt;P&gt;Resident FlagTable&lt;/P&gt;&lt;P&gt;Where Flag = ‘1’;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Drop Table FlagTable;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 08:05:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1671980#M50832</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-04T08:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672132#M50845</link>
      <description>&lt;P&gt;All the Extract dates are in the same source not different&amp;nbsp; sources. Its just one table&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 12:51:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672132#M50845</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-04T12:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672191#M50849</link>
      <description>&lt;P&gt;Then get the Month fields from the same table:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Table:
NoConcatenate Load Distinct
MonthField1
From YourSource;
 
Table_map:
Mapping Load Distinct
MonthField2
‘1’ as Flag
From YourSource;
  
FlagTable:
NoConcatenate Load
MonthField1,
ApplyMap(‘Table_map’,MonthField1,’0’) as Flag
Resident Table;

Drop Table Table;
  
FinalTable:
NoConcatenate Load
MonthField1 as OverlappingMonths,
Resident FlagTable
Where Flag = ‘1’;
&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:49:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672191#M50849</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-04T14:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672195#M50850</link>
      <description>&lt;P&gt;I have more than 2 Extract dates, I gave 2 just as an example&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672195#M50850</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-04T14:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672197#M50851</link>
      <description>&lt;P&gt;And Extract date is one field not 2 different fields&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 14:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672197#M50851</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-04T14:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672751#M50929</link>
      <description>&lt;P&gt;Any more ideas?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 02:34:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672751#M50929</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T02:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672776#M50934</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I do not understand the original question. Please provide a sample dataset and an example or clear description of the desired situation.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 06:24:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672776#M50934</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-06T06:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672939#M50969</link>
      <description>&lt;P&gt;Attached please find the sample data set with the desired Result&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 12:57:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1672939#M50969</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T12:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673001#M50977</link>
      <description>&lt;P&gt;It took quite some scripting to get the result, but I got it working. Attached you can find my Test.qvf.&lt;/P&gt;&lt;P&gt;The script I used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;//=== Extract the data
Data:
NoConcatenate LOAD
    date([Extract Date]) as [Extract Date],
    date([Forecast Date]) as [Forecast Date],
    Amount
FROM [lib://Desktop/Sample_Data.xlsx]
(ooxml, embedded labels, table is Data);

//=== Create a table with all the possible Extract Months
Extract_Months:
NoConcatenate Load Distinct
	month([Extract Date]) as [Extract Month]
Resident Data;

//=== Loop over the Extract Months
For i = 0 to (NoOfRows('Extract_Months') - 1);
	
    //=== Get the Extract Month
    Let vExtract_Month = Peek('Extract Month','$(i)','Extract_Months');
    
    //=== Get all possible Forecast Months of the Extract Month
    Forecast_Months_tmp:
	NoConcatenate Load Distinct
        Month([Forecast Date]) as [Forecast Month]
    Resident [Data]
    Where month([Extract Date]) = '$(vExtract_Month)';
    
	If i = 0 Then
    	//=== Create a new table for all Forecast Months
    	Rename Table Forecast_Months_tmp to Forecast_Months;
    Else
    	//=== Add the new found Forecast Months to the table
        //=== We need the RowNo() to keep double values
    	Concatenate(Forecast_Months) Load RowNo() as TempNr, * Resident Forecast_Months_tmp;
    	Drop Table Forecast_Months_tmp;
   	EndIf;
    
Next i;

Drop Table Extract_Months;

//=== Count how many times we found a every Forecast Month in distinctive Extract Months
Forecast_Months_Count:
NoConcatenate Load
    [Forecast Month],
    Count([Forecast Month]) as Count
Resident Forecast_Months
Group by [Forecast Month];
Drop Table Forecast_Months;

//=== Flag the Forecast Months that we found multiple times
Month_Flag_map:
Mapping Load
    [Forecast Month],
	'1' as Flag
Resident Forecast_Months_Count
Where Count &amp;gt;= '2';
Drop Table Forecast_Months_Count;

//=== Flag the records of the multiple Forecast Months
New_Data_tmp:
NoConcatenate Load
	[Extract Date],
	[Forecast Date],
	[Amount],
    ApplyMap('Month_Flag_map',month([Forecast Date]),'0') as Flag
Resident Data;
Drop Table [Data];

//=== Filter all records with the multiple Forecast Months
New_Data:
NoConcatenate Load
	[Extract Date],
	[Forecast Date],
	[Amount]
Resident New_Data_tmp
Where Flag = '1';
Drop Table New_Data_tmp;

Store New_Data into [lib://Desktop/Data.qvd];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 14:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673001#M50977</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-06T14:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673021#M50980</link>
      <description>&lt;P&gt;I am not able to open the message you sent&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673021#M50980</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T15:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673022#M50981</link>
      <description>&lt;P&gt;The script I used:&lt;/P&gt;&lt;P&gt;//=== Extract the data Data: NoConcatenate LOAD date([Extract Date]) as [Extract Date], date([Forecast Date]) as [Forecast Date], Amount FROM [lib://Desktop/Sample_Data.xlsx] (ooxml, embedded labels, table is Data); //=== Create a table with all the possible Extract Months Extract_Months: NoConcatenate Load Distinct month([Extract Date]) as [Extract Month] Resident Data; //=== Loop over the Extract Months For i = 0 to (NoOfRows('Extract_Months') - 1); //=== Get the Extract Month Let vExtract_Month = Peek('Extract Month','$(i)','Extract_Months'); //=== Get all possible Forecast Months of the Extract Month Forecast_Months_tmp: NoConcatenate Load Distinct Month([Forecast Date]) as [Forecast Month] Resident [Data] Where month([Extract Date]) = '$(vExtract_Month)'; If i = 0 Then //=== Create a new table for all Forecast Months Rename Table Forecast_Months_tmp to Forecast_Months; Else //=== Add the new found Forecast Months to the table //=== We need the RowNo() to keep double values Concatenate(Forecast_Months) Load RowNo() as TempNr, * Resident Forecast_Months_tmp; Drop Table Forecast_Months_tmp; EndIf; Next i; Drop Table Extract_Months; //=== Count how many times we found a every Forecast Month in distinctive Extract Months Forecast_Months_Count: NoConcatenate Load [Forecast Month], Count([Forecast Month]) as Count Resident Forecast_Months Group by [Forecast Month]; Drop Table Forecast_Months; //=== Flag the Forecast Months that we found multiple times Month_Flag_map: Mapping Load [Forecast Month], '1' as Flag Resident Forecast_Months_Count Where Count &amp;gt;= '2'; Drop Table Forecast_Months_Count; //=== Flag the records of the multiple Forecast Months New_Data_tmp: NoConcatenate Load [Extract Date], [Forecast Date], [Amount], ApplyMap('Month_Flag_map',month([Forecast Date]),'0') as Flag Resident Data; Drop Table [Data]; //=== Filter all records with the multiple Forecast Months New_Data: NoConcatenate Load [Extract Date], [Forecast Date], [Amount] Resident New_Data_tmp Where Flag = '1'; Drop Table New_Data_tmp; Store New_Data into [lib://Desktop/Data.qvd];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:17:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673022#M50981</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T15:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673027#M50982</link>
      <description>&lt;P&gt;It took some scripting effort to get the desired result. The script below will work: You only need to change your data connection. Attached is the Test.qvf.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;//=== Extract the data
Data:
NoConcatenate LOAD
    date([Extract Date]) as [Extract Date],
    date([Forecast Date]) as [Forecast Date],
    Amount
FROM [lib://Desktop/Sample_Data.xlsx]
(ooxml, embedded labels, table is Data);

//=== Create a table with all the possible Extract Months
Extract_Months:
NoConcatenate Load Distinct
	month([Extract Date]) as [Extract Month]
Resident Data;

//=== Loop over the Extract Months
For i = 0 to (NoOfRows('Extract_Months') - 1);
	
    //=== Get the Extract Month
    Let vExtract_Month = Peek('Extract Month','$(i)','Extract_Months');
    
    //=== Get all possible Forecast Months of the Extract Month
    Forecast_Months_tmp:
	NoConcatenate Load Distinct
        Month([Forecast Date]) as [Forecast Month]
    Resident [Data]
    Where month([Extract Date]) = '$(vExtract_Month)';
    
	If i = 0 Then
    	//=== Create a new table for all Forecast Months
    	Rename Table Forecast_Months_tmp to Forecast_Months;
    Else
    	//=== Add the new found Forecast Months to the table
        //=== We need the RowNo() to keep double values
    	Concatenate(Forecast_Months) Load RowNo() as TempNr, * Resident Forecast_Months_tmp;
    	Drop Table Forecast_Months_tmp;
   	EndIf;
    
Next i;

Drop Table Extract_Months;

//=== Count how many times we found a every Forecast Month in distinctive Extract Months
Forecast_Months_Count:
NoConcatenate Load
    [Forecast Month],
    Count([Forecast Month]) as Count
Resident Forecast_Months
Group by [Forecast Month];
Drop Table Forecast_Months;

//=== Flag the Forecast Months that we found multiple times
Month_Flag_map:
Mapping Load
    [Forecast Month],
	'1' as Flag
Resident Forecast_Months_Count
Where Count &amp;gt;= '2';
Drop Table Forecast_Months_Count;

//=== Flag the records of the multiple Forecast Months
New_Data_tmp:
NoConcatenate Load
	[Extract Date],
	[Forecast Date],
	[Amount],
    ApplyMap('Month_Flag_map',month([Forecast Date]),'0') as Flag
Resident Data;
Drop Table [Data];

//=== Filter all records with the multiple Forecast Months
New_Data:
NoConcatenate Load
	[Extract Date],
	[Forecast Date],
	[Amount]
Resident New_Data_tmp
Where Flag = '1';
Drop Table New_Data_tmp;

Store New_Data into [lib://Desktop/Data.qvd];&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:26:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673027#M50982</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-06T15:26:24Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673028#M50983</link>
      <description>&lt;P&gt;Can you pls attach the qvf again?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:27:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673028#M50983</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T15:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673031#M50984</link>
      <description>&lt;P&gt;Question why we are starting with NOConcatenate ?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:34:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673031#M50984</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T15:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673032#M50985</link>
      <description>&lt;P&gt;The Test.qvf is attached to my most recent comment. I use NoConcatenate Load such that tables are never concatenated by accident. I do not know the rest of your script, so to be sure that this part won’t conflict with your script, I used NoConcatenate.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 15:39:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673032#M50985</guid>
      <dc:creator>TimvB</dc:creator>
      <dc:date>2020-02-06T15:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673137#M50989</link>
      <description>&lt;P&gt;Attached please find&amp;nbsp; the sample data and sample QVF&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 19:50:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673137#M50989</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T19:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673139#M50990</link>
      <description>&lt;P&gt;Sample Data&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 19:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673139#M50990</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-06T19:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673879#M51069</link>
      <description>&lt;P&gt;Which rows do you expect to see flagged with duplicates?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 12:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673879#M51069</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2020-02-10T12:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Use only Overlapping Months</title>
      <link>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673883#M51070</link>
      <description>&lt;P&gt;If I select Any 2&amp;nbsp; Extract Dates on the fron t ends I expect to see only the common months between those 2 selected dates.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 13:19:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Use-only-Overlapping-Months/m-p/1673883#M51070</guid>
      <dc:creator>Rehan</dc:creator>
      <dc:date>2020-02-10T13:19:34Z</dc:date>
    </item>
  </channel>
</rss>

