<?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: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was: in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181939#M34697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm not quite able to understand your example.&amp;nbsp; If you have a step in your macro like:&lt;/P&gt;&lt;PRE&gt;data _null_;
&amp;nbsp; a=compress("M&amp;amp;S"||"%");
&amp;nbsp; call symput("Table_Brand",a);
run;
%put &amp;amp;Table_Brand;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will throw the warning because M&amp;amp;S looks to SAS like M followed by a reference to a macro variable &amp;amp;S. The &amp;amp; is a macro trigger, telling SAS that a macro variable name is coming.&amp;nbsp; Macro quoting lets you hide the &amp;amp; from SAS, so it doesn't see a macro trigger.&amp;nbsp; You could use macro quoting in this case, like:&lt;/P&gt;&lt;PRE&gt;data _null_;
&amp;nbsp; a=compress("%nrstr(M&amp;amp;S)"||"%");
&amp;nbsp; call symput("Table_Brand",a);
run;
%put &amp;amp;Table_Brand;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it would be unusual to use CALL SYMPUT like that, because you are not reading a data step variable.&amp;nbsp; So you could achieve the same thing with just a %LET statement, e.g.. :&lt;/P&gt;&lt;PRE&gt;52&amp;nbsp;&amp;nbsp; %let Table_Brand=%nrstr(M&amp;amp;A%%);
53&amp;nbsp;&amp;nbsp; %put &amp;amp;Table_Brand;
M&amp;amp;A%
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Feb 2015 00:07:49 GMT</pubDate>
    <dc:creator>Quentin</dc:creator>
    <dc:date>2015-02-28T00:07:49Z</dc:date>
    <item>
      <title>A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181929#M34687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone. I need a bit of help in resolving the below error.Please can someone help me out ASAP?&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: red; background-position: initial;"&gt;ERROR: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: red; background-position: initial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;amp;name EQ R2C&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: red; background-position: initial;"&gt;ERROR: The macro MI will stop executing.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: red; background-position: initial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;&lt;SPAN style="font-family: 'Courier New'; color: #000000; background-position: initial;"&gt;%MI(PC,NBS,M&amp;amp;S,MNS,M&amp;amp;S)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 11pt; font-family: Calibri, sans-serif; color: #222222; background-color: #ffffff;"&gt;(This below code is just a part of a Macro I believe where the error is. You can find the full macro attached.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data &amp;amp;Brand;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; Set %if &amp;amp;brand ne MNS /*and &amp;amp;brand ne RAC*/ %then NbsMotor.&amp;amp;Set ; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; %if &amp;amp;brand eq MNS %then &amp;amp;set ; /*%if &amp;amp;brand eq RAC %then NbsRAC.&amp;amp;set &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;*/;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Length Channel $ 2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; %if &amp;amp;name EQ R2C %then %do ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; if Misc_AffinityGroup = 'RA2' ; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Misc_AffinityParent = 'R2C' ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; %end ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;%if &amp;amp;name EQ RAC %then if Misc_AffinityGroup = 'RA1' ;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; If Misc_Qte_Date = . or Misc_DataQuality ne 'OK' Then delete;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;/*&amp;nbsp; If Quote_ErrorCheck in (1,3) Then delete;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 19:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181929#M34687</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-25T19:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181930#M34688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, you didn't actually attach the code or give us a clue as to what &amp;amp;NAME contains.&amp;nbsp; But I would guess adding double quotes would change the functionality of the automatic %EVAL on %if conditions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%if "&amp;amp;name" EQ "R2C" %then %do;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 21:16:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181930#M34688</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-02-25T21:16:50Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181931#M34689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thank you for your prompt response. Sorry, I could not attach a file as the website did not allow me to. Please find below what the macro contains.Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%Macro MI(Product,Trntyp,Name,Brand,Brand2);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New'; font-size: 14.6666679382324px; background-color: #ffffff;"&gt;%MI(PC,NBS,M&amp;amp;S,MNS,M&amp;amp;S)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 21:31:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181931#M34689</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-25T21:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181932#M34690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And did you try the solution I suggested?&amp;nbsp; It might just be that simple to fix.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 22:09:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181932#M34690</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-02-25T22:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181933#M34691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Astounding,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, I have not tried yet as I do not have the access to my laptop at the moment. I will let you know once I try. But, I was thinking if the error is due to &amp;amp;name=M&amp;amp;S may be &amp;amp;(and) is taken as &amp;amp;(ampersand) in M&amp;amp;S. Please correct me if I am wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 22:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181933#M34691</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-25T22:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181934#M34692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's probably it.&amp;nbsp; If you have a macro variable &amp;amp;S, that will give you the wrong result.&amp;nbsp; But if you don't have such a variable, you'll probably get a combination of a warning plus the correct result.&amp;nbsp; So try the double quotes and let's see what happens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Feb 2015 23:34:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181934#M34692</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2015-02-25T23:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181935#M34693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agree with your diagnosis, Kiran.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would think using %NRSTR() to mask the &amp;amp; should help, e.g.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%MI(PC,NBS,%NRSTR(M&amp;amp;S),MNS,%NRSTR(M&amp;amp;S))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 01:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181935#M34693</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2015-02-26T01:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181936#M34694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Astounding.That worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CAN YOU RECOMMEND ME ANY &lt;STRONG&gt;PERMANENT FIX&lt;/STRONG&gt; REMOVING DOLLAR SIGN IN FRONT OF RECORDS. NOT THE (INFORMAT) AS THE TABLES ARE MOVING FROM SQL TO SAS. AND THE VARIABLES SHOULD NOT CHANGE FROM NUMERIC TO CHARACTER.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 18:29:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181936#M34694</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-26T18:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181937#M34695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Quentin and Astounding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 18:30:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181937#M34695</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-26T18:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181938#M34696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Quentin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still stuck with these kind of errors. Tried looking for a fix, thought I would take you guy's advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt;%MI(PC,NBS,%nrstr(M&amp;amp;S),MNS,%nrstr(M&amp;amp;S));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt; A = Compress("M&amp;amp;S"||'%');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt; MPRINT(MI): Call Symput('Table_Brand',A);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Courier New', Courier, monospace, arial, sans-serif; font-size: 14px; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt;SYMBOLGEN: Macro variable TABLE_BRAND resolves to M&amp;amp;S% &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt;WARNING: Apparent symbolic reference S not resolved.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 14px; background-color: #ffffff; font-family: 'Courier New', Courier, monospace, arial, sans-serif;"&gt;What could be the issue?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 21:36:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181938#M34696</guid>
      <dc:creator>KiranMaddi</dc:creator>
      <dc:date>2015-02-27T21:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: A character operand was found in the %EVAL function or %IF condition where a numeric operand is required. The condition was:</title>
      <link>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181939#M34697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm not quite able to understand your example.&amp;nbsp; If you have a step in your macro like:&lt;/P&gt;&lt;PRE&gt;data _null_;
&amp;nbsp; a=compress("M&amp;amp;S"||"%");
&amp;nbsp; call symput("Table_Brand",a);
run;
%put &amp;amp;Table_Brand;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That will throw the warning because M&amp;amp;S looks to SAS like M followed by a reference to a macro variable &amp;amp;S. The &amp;amp; is a macro trigger, telling SAS that a macro variable name is coming.&amp;nbsp; Macro quoting lets you hide the &amp;amp; from SAS, so it doesn't see a macro trigger.&amp;nbsp; You could use macro quoting in this case, like:&lt;/P&gt;&lt;PRE&gt;data _null_;
&amp;nbsp; a=compress("%nrstr(M&amp;amp;S)"||"%");
&amp;nbsp; call symput("Table_Brand",a);
run;
%put &amp;amp;Table_Brand;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it would be unusual to use CALL SYMPUT like that, because you are not reading a data step variable.&amp;nbsp; So you could achieve the same thing with just a %LET statement, e.g.. :&lt;/P&gt;&lt;PRE&gt;52&amp;nbsp;&amp;nbsp; %let Table_Brand=%nrstr(M&amp;amp;A%%);
53&amp;nbsp;&amp;nbsp; %put &amp;amp;Table_Brand;
M&amp;amp;A%
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;--Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2015 00:07:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/A-character-operand-was-found-in-the-EVAL-function-or-IF/m-p/181939#M34697</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2015-02-28T00:07:49Z</dc:date>
    </item>
  </channel>
</rss>

