<?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: Sort monthnames on monthnumber in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411778#M806216</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens if you use a couple of function calls directly on the DB column? Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Month(Date#(left(Regieritnr, 6), 'YYMMDD')) AS Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Oct 2017 10:58:56 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2017-10-23T10:58:56Z</dc:date>
    <item>
      <title>Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411770#M806202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a SQL table with three integer columns, Year, month and total. I can show that in a 'Draaitabel' with month horizontal and year vertical. Horizontal needs to be sorted on month (1,2,3). Now I want not to show the month numbers, but the month names. I can do that&amp;nbsp; with the Longmonthnames, but then the sorting goes all wrong. Houw can I sort the monthnames on their 'integer' values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411770#M806202</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411771#M806203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Paul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use monthname() you will get the monthname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:10:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411771#M806203</guid>
      <dc:creator>satheshreddy</dc:creator>
      <dc:date>2017-10-23T10:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411772#M806205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create month field in the script using month(), like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Makedate(Year,Month, &amp;lt;Day&amp;gt;)) as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;Month(MakeDate(Year,Month, &amp;lt;Day&amp;gt;)) as Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't have Day field, you can leave the third parameter blank like: makedate(Year,Month). Now you get short month names that sort properly. It's always better to create date fields using proper qlik date functions to avoid unwanted complexity/behaviour in the UI. If you want to sort across years, then create monthname like:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG style="font-size: 13.3333px;"&gt;MonthName(MakeDate(Year,Month, &amp;lt;Day&amp;gt;)) as MonthNames&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:18:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411772#M806205</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-10-23T10:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411773#M806206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the help.&lt;/P&gt;&lt;P&gt;I was already able to create the name of the month,&lt;/P&gt;&lt;P&gt;I want to show only the name of the month and not the monthnumber, but it needs te be sorted on the monthnumber.&lt;/P&gt;&lt;P&gt;Can you help me with the sorting?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:31:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411773#M806206</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T10:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411774#M806207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tres was explaining to you how to create Months as &lt;EM&gt;dual&lt;/EM&gt; values. A Dual value carries both a textual and a numerical representation of the Month. By default, a field that is used as a dimension will show the textual representation (with proper alignment) and sort according to the numerical representation. If this doesn't work, goto the Sort tab and select 'Numerical' to sort your month names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this doesn't work, you still don't have Months as dual values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411774#M806207</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-10-23T10:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411775#M806210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you create Month field using Month() as I showed above, you get a dual field (number at the backend and string at the front), i.e. You will see Jan,Feb,... in the UI it would sort properly. Try it. If you don't want to go back to the script, let know how does your month field look like and what is your expected output (may be a qvw or screen shot).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:37:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411775#M806210</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-10-23T10:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411776#M806211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual(Month,MonthNumber) function to sort MONTH by MonthNumber easily&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sahadev &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411776#M806211</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-23T10:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411777#M806213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I read the data from an SQL database.&lt;/P&gt;&lt;P&gt;Dat date is derived from a fielr Regieritnr, which has the form YYMMDDxxxxx&lt;/P&gt;&lt;P&gt;I generate year and month&amp;nbsp; as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODBC CONNECT TO DWHSQL;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;/P&gt;&lt;P&gt;('20' + left(ltrim(STR(Regieritnr)),2) as Jaar,&lt;/P&gt;&lt;P&gt;right(left(ltrim(STR(Regieritnr)),4),2) as Maand,&lt;/P&gt;&lt;P&gt;Reiseenheden_gemeente as Aantal&lt;/P&gt;&lt;P&gt;FROM RegieRit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The function MakeDate does not exist for SQL server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I can use is this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Month(MakeDate('20' + left(ltrim(STR(Regieritnr)),2),right(left(ltrim(STR(Regieritnr)),4),2))) as Month,&lt;/P&gt;&lt;P&gt;But Month only shows as an integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This shows as a string:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;DATENAME(month,'20' + left(ltrim(STR(Regieritnr)),2)&amp;nbsp; + '-' + right(left(ltrim(STR(Regieritnr)),4),2) + '-01') as MaandString,&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;but it cannot sort as a number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What an I doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:55:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411777#M806213</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T10:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411778#M806216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What happens if you use a couple of function calls directly on the DB column? Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Month(Date#(left(Regieritnr, 6), 'YYMMDD')) AS Month,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 10:58:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411778#M806216</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-10-23T10:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411779#M806219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to send a qvw, but I don't know how to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411779#M806219</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T11:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411780#M806220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check &lt;A href="https://community.qlik.com/docs/DOC-16454"&gt;Uploading a Sample&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:19:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411780#M806220</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-10-23T11:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411781#M806222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a qvw test file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i'm looking for is:&lt;/P&gt;&lt;P&gt;-A column for each month of the year (evenif there are no input records for thes month)&lt;/P&gt;&lt;P&gt;-The columns sorted in the correct sequence (jan-feb-mar etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul Berendts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411781#M806222</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T11:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411782#M806224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably you have forgotten to attach the file. However, now that you say:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Paul Berendts wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;..-A column for each month of the year (&lt;STRONG&gt;evenif there are no input records&lt;/STRONG&gt; for thes month)&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I guess you have to use a master calendar to generate all the missing dates/months. Have a look here&lt;SPAN style="font-size: 10pt;"&gt;:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3858"&gt;Master Calendar Generation Script&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3786"&gt;Generating Missing Data In QlikView&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-3786#start=25" title="https://community.qlik.com/docs/DOC-3786#start=25"&gt;Generating Missing Data In QlikView&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:41:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411782#M806224</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-10-23T11:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411783#M806226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a qvw test file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i'm looking for is:&lt;/P&gt;&lt;P&gt;-A column for each month of the year (evenif there are no input records for thes month)&lt;/P&gt;&lt;P&gt;-The columns sorted in the correct sequence (jan-feb-mar etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paul Berendts&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411783#M806226</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T11:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411784#M806228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try calculated dimension like:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Month(MakeDate(1,Maand))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/180552_Capture.JPG" style="height: 211px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 11:50:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411784#M806228</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-10-23T11:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sort monthnames on monthnumber</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411785#M806229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, exactly what I was looking for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2017 12:49:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-monthnames-on-monthnumber/m-p/1411785#M806229</guid>
      <dc:creator>paulberendts</dc:creator>
      <dc:date>2017-10-23T12:49:08Z</dc:date>
    </item>
  </channel>
</rss>

