<?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: Sum Credit/Debit if matching condition met in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793155#M660439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QVD script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VendorInvoice_Child:&lt;BR /&gt; NoConcatenate LOAD Distinct&lt;BR /&gt; VND_ChildTransID, &lt;BR /&gt; VND_TransID, &lt;BR /&gt; VND_Amount, &lt;BR /&gt; VND_ChildAmtFlagZero, &lt;BR /&gt; VND_ChildDueDate, &lt;BR /&gt; VND_TransDate, &lt;BR /&gt; VND_TRAPO, &lt;BR /&gt; VND_VendorPO, &lt;BR /&gt; VND_VendorInv,&lt;BR /&gt; if(VND_Amount&amp;lt;0, VND_Amount) as VND_Credit,&lt;BR /&gt; if(VND_Amount&amp;gt;0, VND_Amount) as VND_Payment&lt;BR /&gt; &lt;BR /&gt; FROM&lt;BR /&gt; &lt;C&gt;&lt;BR /&gt; (qvd)&lt;BR /&gt; WHERE(VND_VendorInv &amp;lt;&amp;gt; 'CLEAR' And VND_TransDate &amp;gt;= '1/1/2015' and VND_ChildDueDate &amp;gt;= '1/1/2015');&lt;BR /&gt; &lt;BR /&gt; Store * FROM VendorInvoice_Child into C:\QlikView\QlikView Production\QVDocuments\SourceDocuments\QVD\TEST\VendorInvoice_CHILD_FINAL.qvd (qvd);&lt;BR /&gt; Drop Table VendorInvoice_Child;&lt;/C&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Mar 2015 17:33:32 GMT</pubDate>
    <dc:creator>jenmclean</dc:creator>
    <dc:date>2015-03-26T17:33:32Z</dc:date>
    <item>
      <title>Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793144#M660411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this chart, I need to combine (calculate) for a net total if the number in the &lt;STRONG&gt;RMA/PO#&lt;/STRONG&gt; column and the &lt;STRONG&gt;Vendor Inv&lt;/STRONG&gt; column match. This is an accounts payable function. So on the same check number there in an invoice and a debit and I want to combine these two lines for a Pmt Amt that would equal $240.42 as the information from this chart is exported into the accounting software. This would eliminate repetitive tasks for the employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I write an expression that would do this?&lt;IMG __jive_id="81897" alt="setanalysis1.png" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/81897_setanalysis1.png" style="width: 620px; height: 254px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jennie Elliott&#xD;
&#xD;
I have added an example of what my end results should be&#xD;
&#xD;
Attached is what I am trying to achieve:&#xD;
&#xD;
&#xD;
&#xD;
If RMA/PO# = Vendor Inv, then Sum for a Net Payment (Invoice - Credit). I need to combine these matching lines into one line if those numbers match.&#xD;
&#xD;
&#xD;
&#xD;
Do I script this or write an expression?&#xD;
&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 18:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793144#M660411</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-25T18:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793145#M660413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - I loaded a new 'ID' field that takes its value from the RMA/PO #&amp;nbsp; or the Vendor Inv field depending which is null().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD Check,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RMA,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Vendor Inv],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if( isnull(RMA),[Vendor Inv],RMA) as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; E&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ID:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp; Distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp; ID&lt;/P&gt;&lt;P&gt;resident Data;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i created a straight table with ID as a dimension (but hidden per presentation tab settings).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gave me this for attached data sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/81921_Capture.PNG" style="height: 204px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 19:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793145#M660413</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-03-25T19:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793146#M660416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll try that and let you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 19:51:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793146#M660416</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-25T19:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793147#M660419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a variant using a calculated dimension (could be done in the load script thus removing the need for a calculated dimension), a pivot table, and partial sum on the [Date Entered] field. The expression is simply&lt;/P&gt;&lt;P&gt;Sum([Pmt Amt]). Have attached a sample app too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="81924" alt="2015-03-25 Credit Debet #1.PNG" class="image-1 jive-image" src="/legacyfs/online/81924_2015-03-25 Credit Debet #1.PNG" style="height: 249px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;The first table is just a Table Box to illustrate the raw table. The second table is a pivot with all dimensions expanded. The third table is just a copy of the second to show how it looks like when you "Collapse All" on the first dimension giving you hopefully exactly what you want your users to export to Excel...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 20:06:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793147#M660419</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-03-25T20:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793148#M660421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I cant' put it in a Pivot Table due to having to export all data into Great Plains accounting software. It must be in a straight table chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793148#M660421</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-25T21:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793149#M660425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neither Export or pressing the XL icon on the title bar on the chart should work fine for Pivot Table... Can you explain in more detail?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793149#M660425</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-03-25T21:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793150#M660428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I mean "Both ... and ...." not Neither ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:16:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793150#M660428</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-03-25T21:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793151#M660431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can even automate the export from a button and calling a very simple Macro (which will run perfectly well&lt;/P&gt;&lt;P&gt;even on a QlikView server).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-03-25 Credit Debet #2.PNG" class="image-1 jive-image" src="/legacyfs/online/81938_2015-03-25 Credit Debet #2.PNG" style="height: 281px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:35:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793151#M660431</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-03-25T21:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793152#M660435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or if you prefer to do it in a load script so you actually get two new fields you can even do the Export via an Action/External/Export which demands to have fields with values to be able to export - I have also attached the lates QVW with the code/app:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-03-25 Credit Debet #3.PNG" class="image-1 jive-image" src="/legacyfs/online/81939_2015-03-25 Credit Debet #3.PNG" style="height: 372px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:53:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793152#M660435</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-03-25T21:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793153#M660437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This might work better, I will try it out!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Mar 2015 21:56:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793153#M660437</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-25T21:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793154#M660438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have added a spreadsheet example to my original post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 17:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793154#M660438</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-26T17:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793155#M660439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QVD script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VendorInvoice_Child:&lt;BR /&gt; NoConcatenate LOAD Distinct&lt;BR /&gt; VND_ChildTransID, &lt;BR /&gt; VND_TransID, &lt;BR /&gt; VND_Amount, &lt;BR /&gt; VND_ChildAmtFlagZero, &lt;BR /&gt; VND_ChildDueDate, &lt;BR /&gt; VND_TransDate, &lt;BR /&gt; VND_TRAPO, &lt;BR /&gt; VND_VendorPO, &lt;BR /&gt; VND_VendorInv,&lt;BR /&gt; if(VND_Amount&amp;lt;0, VND_Amount) as VND_Credit,&lt;BR /&gt; if(VND_Amount&amp;gt;0, VND_Amount) as VND_Payment&lt;BR /&gt; &lt;BR /&gt; FROM&lt;BR /&gt; &lt;C&gt;&lt;BR /&gt; (qvd)&lt;BR /&gt; WHERE(VND_VendorInv &amp;lt;&amp;gt; 'CLEAR' And VND_TransDate &amp;gt;= '1/1/2015' and VND_ChildDueDate &amp;gt;= '1/1/2015');&lt;BR /&gt; &lt;BR /&gt; Store * FROM VendorInvoice_Child into C:\QlikView\QlikView Production\QVDocuments\SourceDocuments\QVD\TEST\VendorInvoice_CHILD_FINAL.qvd (qvd);&lt;BR /&gt; Drop Table VendorInvoice_Child;&lt;/C&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 17:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793155#M660439</guid>
      <dc:creator>jenmclean</dc:creator>
      <dc:date>2015-03-26T17:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Credit/Debit if matching condition met</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793156#M660440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;based on your file, separate the RMA from the Vendor and then do a left join and add the amounts up&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD [Date Entered],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Acct #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Entered By],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Vendor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Check #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Str #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Due Date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Vendor Inv],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Pmt Amt] as [Vendor AMT],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Vendor Inv] as ID&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2)&lt;/P&gt;&lt;P&gt;WHERE [Vendor Inv] &amp;gt; 0;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN&lt;/P&gt;&lt;P&gt;LOAD [Date Entered],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Acct #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Check #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Str #],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // [Due Date], Not needed since the vendor is being used&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [RMA/PO #] ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [RMA/PO #] as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Pmt Amt] as [RMA/PO # AMT]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet2)&lt;/P&gt;&lt;P&gt;WHERE [RMA/PO #] &amp;gt; 0;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 17:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-Credit-Debit-if-matching-condition-met/m-p/793156#M660440</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-03-26T17:43:20Z</dc:date>
    </item>
  </channel>
</rss>

