<?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: Concatenate data from files in a folder in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241471#M394199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is how I implemented it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vEndYear=Num(Year(Today()),'0000');&lt;/P&gt;&lt;P&gt;LET vStartYear=Num('2014','0000');&lt;/P&gt;&lt;P&gt;LET vDiffYear=$(vEndYear)-$(vStartYear);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i=0 to $(vDiffYear) step 1&lt;/P&gt;&lt;P&gt;LET vYearBase = $(vStartYear) +$(i);&lt;/P&gt;&lt;P&gt;for&amp;nbsp; j = 1 to 12 step 1&lt;/P&gt;&lt;P&gt;LET vMonthBase = Num($(j),'00');&lt;/P&gt;&lt;P&gt;LET vYearMonth = $(vYearBase)$(vMonthBase);&lt;/P&gt;&lt;P&gt;TRACE 'YearMonth is' $(vYearMonth);&lt;/P&gt;&lt;P&gt;if isnull(filetime('$(lQVDPath)QVD_Revenue_Details_'&amp;amp;$(vYearMonth)&amp;amp;'.qvd')) Then &lt;/P&gt;&lt;P&gt;TRACE ' The file for ' $(vYearMonth);&lt;/P&gt;&lt;P&gt;TRACE 'does not exist';&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;Revenue_Details:&lt;/P&gt;&lt;P&gt;load&amp;nbsp; *&lt;/P&gt;&lt;P&gt;from $(lQVDPath)QVD_Revenue_Details_$(vYearMonth).qvd(qvd) ;&lt;/P&gt;&lt;P&gt;END IF;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Revenue_Details into $(lQVDPath)QVD_MD_Revenue_Details.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Revenue_Details;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Feb 2017 11:02:26 GMT</pubDate>
    <dc:creator>swati_rastogi27</dc:creator>
    <dc:date>2017-02-22T11:02:26Z</dc:date>
    <item>
      <title>Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241460#M394188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a folder ..\QVD_DataFiles in which I have monthly revenue files :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revenue_Details_201401&lt;/P&gt;&lt;P&gt;Revenue_Details_201402&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Revenue_Details_201702&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All files starting 201401 are refreshed daily , so file create timestamp cannot be used.&lt;/P&gt;&lt;P&gt;Also , every month a new file gets added here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to loop through all files in this folder , but specifying start and end date conditions&lt;/P&gt;&lt;P&gt;Lets say , I don't want data from 2014 files.&lt;/P&gt;&lt;P&gt;In that case ,suppose start_date=201504&lt;/P&gt;&lt;P&gt;End Date will always be current year month (201702)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to concatenate data , from files , from specified date ranges?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 06:28:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241460#M394188</guid>
      <dc:creator>swati_rastogi27</dc:creator>
      <dc:date>2017-02-22T06:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241461#M394189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try like this loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;for&amp;nbsp; yeartoload=2015 to 2016&lt;/P&gt;&lt;P&gt;for month= 04 to 12&lt;/P&gt;&lt;P&gt;let vmakedate= makedate($(yeartoload),$(month),1) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&amp;nbsp; *&lt;/P&gt;&lt;P&gt;from Revenue_Details_$(vmakedate) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 06:42:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241461#M394189</guid>
      <dc:creator />
      <dc:date>2017-02-22T06:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241462#M394190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The thing is , my end month is always the current month,which i don't want to hardcode.&lt;/P&gt;&lt;P&gt;If I use :&lt;/P&gt;&lt;P&gt;LET $(vEndMonth)=num(Month(Today()), I get '2' , whereas I wanted '02'&lt;/P&gt;&lt;P&gt;Could you help ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:00:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241462#M394190</guid>
      <dc:creator>swati_rastogi27</dc:creator>
      <dc:date>2017-02-22T07:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241463#M394191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LET $(vEndMonth)=num(Month(Today()),'00'),&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241463#M394191</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-22T07:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241464#M394192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the loop only gets the months 04 to 12 every year if used that way. May be we need to loop the incomplete year 1st and the go with Month = 01 to Num(Month(Today()),'00') for remaining years.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:22:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241464#M394192</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-22T07:22:38Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241465#M394193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since the start month is also not fixed , using inner loop to start with 4 would not be a correct option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a possibility to loop from 201504 till 201702 ,incrementing yearmonth by 1 each time?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:31:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241465#M394193</guid>
      <dc:creator>swati_rastogi27</dc:creator>
      <dc:date>2017-02-22T07:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241466#M394194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try some thing below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vPath='D:\Community\VKS\SOURCE';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET VstartDate=Date#('201402','YYYYMM');&lt;/P&gt;&lt;P&gt;LET vEndDate=num(Date(Today(),'YYYYMM'));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR EACH vFile in ('$(vPath)\*.xlsx')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAINLOAD:&lt;/P&gt;&lt;P&gt;LOAD Distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp; FILENAME() as FileName,&lt;/P&gt;&lt;P&gt;&amp;nbsp; (KeepChar(FileName(),1234567890))AS Datef,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(MakeDate(Left((KeepChar(FileName(),1234567890)),4),Right((KeepChar(FileName(),1234567890)),2)),'YYYYMM') As Date1,&lt;/P&gt;&lt;P&gt;&amp;nbsp; FILENAME()&amp;amp;'-'&amp;amp;FileTime() as File_Key&lt;/P&gt;&lt;P&gt;from $(vFile);&lt;/P&gt;&lt;P&gt;NEXT vFile&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FINAL:&lt;/P&gt;&lt;P&gt;Load *,FileTime() As FileTime Resident MAINLOAD where num(Date1)&amp;gt;Date#('201402','YYYYMM') and num(Date1)&amp;lt;=num(Date(Today(),'YYYYMM')) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table MAINLOAD;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241466#M394194</guid>
      <dc:creator>sasikanth</dc:creator>
      <dc:date>2017-02-22T07:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241467#M394195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for&amp;nbsp; i = Monthstart('01/04/2015') to Monthstart(Today)&lt;/P&gt;&lt;P&gt;Let Suffix = Year($(i))&amp;amp; Num(Month($(i)),'00');&lt;/P&gt;&lt;P&gt;load&amp;nbsp; *&lt;/P&gt;&lt;P&gt;from Revenue_Details_$(Suffix) ;&lt;/P&gt;&lt;P&gt; &lt;SPAN style="font-size: 10pt;"&gt;next&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:44:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241467#M394195</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-22T07:44:32Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241468#M394196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That does not seem to be working .&lt;/P&gt;&lt;P&gt;Its reading the same file multiple times, more than 15 times in fact&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 08:43:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241468#M394196</guid>
      <dc:creator>swati_rastogi27</dc:creator>
      <dc:date>2017-02-22T08:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241469#M394197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..Swati,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer below mentioned URL, i think it will definitely help you.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/223646"&gt;Concatenate  Load data from multiple files&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;EM style="color: #00b050; font-size: 9.5pt; font-family: 'Arial','sans-serif';"&gt;Please remember to mark this as "helpful" &amp;amp; "correct answer" if your query has been solved.&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;EM style=": ; color: #00b050; font-size: 9.5pt; font-family: 'Arial','sans-serif';"&gt;This will help users identify the answers should they come across this thread in the future.&lt;/EM&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;EM style="color: #00b050; font-size: 9.5pt; font-family: 'Arial','sans-serif';"&gt; &lt;/EM&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="color: black; font-size: 9.5pt; font-family: 'Arial','sans-serif';"&gt;Regard's&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt; background: white;"&gt;&lt;SPAN style="color: black; font-size: 9.5pt; font-family: 'Arial','sans-serif';"&gt;Sarvesh Srivastava&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 09:06:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241469#M394197</guid>
      <dc:creator>sarvesh</dc:creator>
      <dc:date>2017-02-22T09:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241470#M394198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;LET&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;$(vEndMonth)&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;num&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Today&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;())) &amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;num&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;year&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Today&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;())) ; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 09:14:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241470#M394198</guid>
      <dc:creator />
      <dc:date>2017-02-22T09:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenate data from files in a folder</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241471#M394199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is how I implemented it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vEndYear=Num(Year(Today()),'0000');&lt;/P&gt;&lt;P&gt;LET vStartYear=Num('2014','0000');&lt;/P&gt;&lt;P&gt;LET vDiffYear=$(vEndYear)-$(vStartYear);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i=0 to $(vDiffYear) step 1&lt;/P&gt;&lt;P&gt;LET vYearBase = $(vStartYear) +$(i);&lt;/P&gt;&lt;P&gt;for&amp;nbsp; j = 1 to 12 step 1&lt;/P&gt;&lt;P&gt;LET vMonthBase = Num($(j),'00');&lt;/P&gt;&lt;P&gt;LET vYearMonth = $(vYearBase)$(vMonthBase);&lt;/P&gt;&lt;P&gt;TRACE 'YearMonth is' $(vYearMonth);&lt;/P&gt;&lt;P&gt;if isnull(filetime('$(lQVDPath)QVD_Revenue_Details_'&amp;amp;$(vYearMonth)&amp;amp;'.qvd')) Then &lt;/P&gt;&lt;P&gt;TRACE ' The file for ' $(vYearMonth);&lt;/P&gt;&lt;P&gt;TRACE 'does not exist';&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;Revenue_Details:&lt;/P&gt;&lt;P&gt;load&amp;nbsp; *&lt;/P&gt;&lt;P&gt;from $(lQVDPath)QVD_Revenue_Details_$(vYearMonth).qvd(qvd) ;&lt;/P&gt;&lt;P&gt;END IF;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Revenue_Details into $(lQVDPath)QVD_MD_Revenue_Details.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Revenue_Details;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2017 11:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenate-data-from-files-in-a-folder/m-p/1241471#M394199</guid>
      <dc:creator>swati_rastogi27</dc:creator>
      <dc:date>2017-02-22T11:02:26Z</dc:date>
    </item>
  </channel>
</rss>

