<?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: How to use a macro variable in a if else condition in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982224#M46366</link>
    <description>&lt;P&gt;I want to map company ='A' if the macro variable &amp;amp;cie = b1&lt;/P&gt;
&lt;P&gt;and map company ='B' if the macro variable &amp;amp;cie=b2&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jan 2026 15:30:54 GMT</pubDate>
    <dc:creator>alepage</dc:creator>
    <dc:date>2026-01-20T15:30:54Z</dc:date>
    <item>
      <title>How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982218#M46362</link>
      <description>&lt;P&gt;The script below is not giving the expected result.&lt;/P&gt;
&lt;P&gt;Please correct the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*%let cie=b2;*/
%let cie=b2;

data class;
format company $1.;
set sashelp.class;
if &amp;amp;cie eq b1 then company="A";
else if &amp;amp;cie eq b2 then company ="B";
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jan 2026 14:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982218#M46362</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2026-01-20T14:56:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982220#M46363</link>
      <description>&lt;P&gt;There are no variables named b1 or b2 in the sashelp.class data set. What are you expecting this step to do?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:15:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982220#M46363</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2026-01-20T15:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982221#M46364</link>
      <description>&lt;P&gt;If you are expecting this to be treated as a string, then try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let cie=b2;

data class;
format company $1.;
set sashelp.class;
if "&amp;amp;cie" eq "b1" then company="A";
else if "&amp;amp;cie" eq "b2" then company ="B";
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:17:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982221#M46364</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2026-01-20T15:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982222#M46365</link>
      <description>&lt;P&gt;Explain what you want your code to do.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:23:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982222#M46365</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2026-01-20T15:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982224#M46366</link>
      <description>&lt;P&gt;I want to map company ='A' if the macro variable &amp;amp;cie = b1&lt;/P&gt;
&lt;P&gt;and map company ='B' if the macro variable &amp;amp;cie=b2&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:30:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982224#M46366</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2026-01-20T15:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982226#M46368</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I want to map company ='A' if the macro variable &amp;amp;cie = b1&lt;/P&gt;
&lt;P&gt;and map company ='B' if the macro variable &amp;amp;cie=b2&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course even with this brief description, we don't know if b1 is a variable in your data set or a value of the variable. Similarly for b2. And we don't know if the value of &amp;amp;cie is supposed to be a text string or the name of a variable or something else. These very brief problem descriptions are rarely sufficient.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please explain in words the problem you are trying to solve using the macro variable, making it clear what &amp;amp;cie contains and what b1 and b2 represent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, you didn't provide a data set (which you should always do), so that would make things clearer. Use these &lt;A href="https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982224#M46366" target="_self"&gt;instructions and examples&lt;/A&gt; to provide a data set.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982226#M46368</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2026-01-20T15:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982227#M46369</link>
      <description>this script is not working.</description>
      <pubDate>Tue, 20 Jan 2026 15:50:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982227#M46369</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2026-01-20T15:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982228#M46370</link>
      <description>&lt;P&gt;One of the key parts to learning the macro language is to learn the difference between %IF and IF.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to use the macro language to decide which SAS code the macro will generate, you use the %IF statement.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;It sounds like you might want:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let cie=b2;

data class;
  format company $1.;
  set sashelp.class;
  
  %if &amp;amp;cie=b1 %then %do;
    company="A";
  %end;
  %else %if &amp;amp;cie=b2 %then %do;
    company="B";
  %end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:51:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982228#M46370</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2026-01-20T15:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982229#M46371</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;this script is not working.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please explain further, as I said earlier in this thread, very brief explanations are rarely sufficient.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 15:53:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982229#M46371</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2026-01-20T15:53:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982230#M46372</link>
      <description>ERROR: Nesting of %IF statements in open code is not supported. %IF ignored.&lt;BR /&gt;ERROR: Skipping to next %END statement.</description>
      <pubDate>Tue, 20 Jan 2026 15:53:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982230#M46372</guid>
      <dc:creator>alepage</dc:creator>
      <dc:date>2026-01-20T15:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982231#M46373</link>
      <description>&lt;P&gt;In the case of my code where I treat the macro variable as text and compare it to text or&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;code that uses a macro %IF condition, you will get a value of Company=B for every observation in the Class data set. The following code works for me:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let cie=b2;

data class;
format company $1.;
set sashelp.class;
if "&amp;amp;cie" eq "b1" then company="A";
else if "&amp;amp;cie" eq "b2" then company ="B";
run;

proc print;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Output:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Obs    company    Name       Sex    Age    Height    Weight

  1       B       Alfred      M      14     69.0      112.5
  2       B       Alice       F      13     56.5       84.0
  3       B       Barbara     F      13     65.3       98.0
  4       B       Carol       F      14     62.8      102.5
  5       B       Henry       M      14     63.5      102.5
  6       B       James       M      12     57.3       83.0
  7       B       Jane        F      12     59.8       84.5
  8       B       Janet       F      15     62.5      112.5
  9       B       Jeffrey     M      13     62.5       84.0
 10       B       John        M      12     59.0       99.5
 11       B       Joyce       F      11     51.3       50.5
 12       B       Judy        F      14     64.3       90.0
 13       B       Louise      F      12     56.3       77.0
 14       B       Mary        F      15     66.5      112.0
 15       B       Philip      M      16     72.0      150.0
 16       B       Robert      M      12     64.8      128.0
 17       B       Ronald      M      15     67.0      133.0
 18       B       Thomas      M      11     57.5       85.0
 19       B       William     M      15     66.5      112.0
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If this is not working for you, please send your log.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 16:00:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982231#M46373</guid>
      <dc:creator>Kathryn_SAS</dc:creator>
      <dc:date>2026-01-20T16:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982232#M46374</link>
      <description>&lt;P&gt;You seem unwilling to explain in detail what you are trying to do. This would help greatly and probably you would already have an answer if we had a better explanation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The specific error message is that you cannot use nested %IFs outside of a macro in SAS, and is an entirely different problem than the one you started the thread with. But since you haven't shown us your code and haven't explained the points that several people have mentioned, its nearly impossible to help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please don't be so reluctant to provide the information and detail we have asked for. Please be generous with information.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 16:04:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982232#M46374</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2026-01-20T16:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982233#M46375</link>
      <description>&lt;P&gt;Sorry, my macro code will only work if the code is inside a macro definition.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 16:03:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982233#M46375</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2026-01-20T16:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982238#M46376</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/19879"&gt;@Quentin&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Sorry, my macro code will only work if the code is inside a macro definition.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;It will also work if the "nesting" is avoided by omitting the &lt;FONT face="courier new,courier"&gt;%else&lt;/FONT&gt;&amp;nbsp;keyword.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 16:41:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982238#M46376</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2026-01-20T16:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982239#M46377</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The script below is not giving the expected result.&lt;/P&gt;
&lt;P&gt;Please correct the script&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*%let cie=b2;*/
%let cie=b2;

data class;
format company $1.;
set sashelp.class;
if &amp;amp;cie eq b1 then company="A";
else if &amp;amp;cie eq b2 then company ="B";
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Just be your own macro processor and see what SAS code you asked the macro processor to create.&amp;nbsp; Your example would generate this data step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data class;
format company $1.;
set sashelp.class;
if b2 eq b1 then company="A";
else if b2 eq b2 then company ="B";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Since SASHELP.CLASS does not have variables named B1 or B2 the IF condition will be true since both variables will always have missing value.&amp;nbsp; So the new variable COMPANY will always be set to "A".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS&amp;nbsp; Why did you feel the need to attach the $1. format to COMPANY?&amp;nbsp; It really won't have any impact on how SAS displays it since it will only be one byte long. Perhaps you meant to use this statement instead to define COMPANY as a character variable with a storage length of one byte.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;length company&amp;nbsp;$1;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jan 2026 17:20:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982239#M46377</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-01-20T17:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982240#M46378</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/76331"&gt;@alepage&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;ERROR: Nesting of %IF statements in open code is not supported. %IF ignored.&lt;BR /&gt;ERROR: Skipping to next %END statement.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can either remove the %ELSE and make each %IF independent.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if &amp;amp;cie=b1 %then %do;
    company="A";
%end;
%if &amp;amp;cie=b2 %then %do;
    company="B";
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Or perhaps you don't need the second %IF at all and can instead just use the %ELSE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if &amp;amp;cie=b1 %then %do;
    company="A";
%end;
%else %do;
    company="B";
%end;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jan 2026 17:24:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982240#M46378</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2026-01-20T17:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a macro variable in a if else condition</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982243#M46379</link>
      <description>&lt;P&gt;Alternatively, you can nest %SYSFUNC function calls instead of %IF statements:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;company="%sysfunc(choosec(%sysfunc(whichc(&amp;amp;cie,b1,b2)),A,B))";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This code can be generalized easily to handle more than two value pairs. You can also specify a value (for variable COMPANY) indicating that macro variable CIE contains an unexpected value:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;company="%sysfunc(choosec(%sysfunc(whichc(&amp;amp;cie,b1,b2))+1,?,A,B))";&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;(Remember that WHICHC returns zero in that case, so the +1 shifts the first argument of the CHOOSEC function appropriately.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or the same using DATA step logic:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;company=choosec(whichc("&amp;amp;cie","b1","b2")+1,"?","A","B");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Jan 2026 19:01:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/How-to-use-a-macro-variable-in-a-if-else-condition/m-p/982243#M46379</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2026-01-20T19:01:20Z</dc:date>
    </item>
  </channel>
</rss>

