<?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 keep the value of a certain date when appending large volume of data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862047#M340489</link>
    <description>I'd probably do that outside of this step. Are you assuming each years values would be filled in? You can create a subset and then merge the data back in is probably the easiest method. &lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 02 Mar 2023 22:28:22 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2023-03-02T22:28:22Z</dc:date>
    <item>
      <title>how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/861986#M340455</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I want to append a long list of data files and then to keep only the values from certain files as the final dataset I am using. Below is my code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro loop(out=total,from=,to=);
%local fromdate todate i month ;
%let fromdate = %sysfunc(inputn(&amp;amp;from.01,yymmdd6));
%let todate = %sysfunc(inputn(&amp;amp;to.01,yymmdd6));
%put &amp;amp;=fromdate %sysfunc(putn(&amp;amp;fromdate,date9));
%put &amp;amp;=todate %sysfunc(putn(&amp;amp;todate,date9));
%do i= 0 %to %sysfunc(intck(month,&amp;amp;fromdate,&amp;amp;todate));
  %let month=%sysfunc(intnx(month,&amp;amp;fromdate,&amp;amp;i),YYMMN4);
  data current; set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv birthday); month=&amp;amp;month.; uci_0=input(uci,12.); run;
  proc append data=current base=&amp;amp;out force; run; 
%end;
%mend;

proc delete data=total ; run;
%loop(out=total,from=1708,to=2207);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;When appending those files, I want to only keep the value of column "birthday" from the files 1807, 1907, 2007, 2107, 2207. Is there a way to build that in the above macros?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 17:31:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/861986#M340455</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T17:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/861992#M340459</link>
      <description>&lt;P&gt;So what CODE do you want the macro to generate?&lt;/P&gt;
&lt;P&gt;It sounds like instead of generating this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data current; set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv birthday);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You want to generate this for some selected values of &amp;amp;MONTH.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data current; set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;So perhaps you want:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data current;
 set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv
%if %substr(&amp;amp;month,3,2) ne 07 %then birthday ;
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Mar 2023 18:14:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/861992#M340459</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-02T18:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862006#M340469</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;I tried your code, but it only grabs birthday when month doesn't end with 07, which is the opposite of what I want. I want to only keep birthday when month ends with 07, that means birthday will be missing (for exmaple) when month does not end with 07. Hope that makes sense.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:21:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862006#M340469</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T19:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862011#M340471</link>
      <description>Change the NE (not equals) to EQ (equals) from Tom's code?</description>
      <pubDate>Thu, 02 Mar 2023 19:37:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862011#M340471</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-03-02T19:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862012#M340472</link>
      <description>&lt;P&gt;I did, but it's not working anymore. the "birthday" column was dropped all together.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:38:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862012#M340472</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T19:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862013#M340473</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/379997"&gt;@kevsma&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;I tried your code, but it only grabs birthday when month doesn't end with 07, which is the opposite of what I want. I want to only keep birthday when month ends with 07, that means birthday will be missing (for exmaple) when month does not end with 07. Hope that makes sense.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You lost me.&amp;nbsp; &amp;nbsp;Explicit examples would help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is the issue that the variable is NOT there sometimes? When?&lt;/P&gt;
&lt;P&gt;Is the issue that the variable is always there , but sometimes you want to ignore it, or replace its value with missing values? When?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you are running a data step it might just be easier to conditionally generate a data step statement that sets the value to missing.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data ....
%if %substr(&amp;amp;month,3,2)=07 then %do;
  birthday=.;
%end;
...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This has the added advantage of creating a dataset with the same set of variables in both cases so that PROC APPEND does not complain or do the wrong thing.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:40:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862013#M340473</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-02T19:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862015#M340474</link>
      <description>&lt;P&gt;Sorry&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;for confusing you. "Birthday" column is included in &lt;STRONG&gt;&lt;EM&gt;all&lt;/EM&gt;&lt;/STRONG&gt; data files I am appending, but I only want to use the value of birthday when the month ends with 07.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862015#M340474</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T19:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862016#M340475</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/379997"&gt;@kevsma&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Sorry&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;for confusing you. "Birthday" column is included in &lt;STRONG&gt;&lt;EM&gt;all&lt;/EM&gt;&lt;/STRONG&gt; data files I am appending, but I only want to use the value of birthday when the month ends with 07.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You should be able to figure it out then.&amp;nbsp; Sounds like either&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;keep= ...
%if %substr(&amp;amp;month,3,2)=07 %then birthday;
...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%if %substr(&amp;amp;month,3,2) ne 07 then %do;
  call missing(birthday);
%end;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:46:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862016#M340475</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-02T19:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862021#M340478</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp;the first method doesn't work as birthday was not picked at all.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;for your second suggestion, could you please indicate where to insert that %do step? i am having a hard time inserting that snippet into the proper location, thanks again...&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:55:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862021#M340478</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T19:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862022#M340479</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options mprint;

%macro loop(out=total, from=, to=);
	%local fromdate todate i month;
	%let fromdate = %sysfunc(inputn(&amp;amp;from.01, yymmdd6));
	%let todate = %sysfunc(inputn(&amp;amp;to.01, yymmdd6));
	%put &amp;amp;=fromdate %sysfunc(putn(&amp;amp;fromdate, date9));
	%put &amp;amp;=todate %sysfunc(putn(&amp;amp;todate, date9));

	%do i=0 %to %sysfunc(intck(month, &amp;amp;fromdate, &amp;amp;todate));
		%let month=%sysfunc(intnx(month, &amp;amp;fromdate, &amp;amp;i), YYMMN4);

		data current;
			set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv birthday);
			month=&amp;amp;month.;
			uci_0=input(uci, 12.);
			%if %substr(&amp;amp;month, 3, 2)=07 %then %do;
				drop birthday;
				*call missing(birthday);
			%end;
		run;

		proc append data=current base=&amp;amp;out force;
		run;

	%end;
%mend;

proc delete data=total;
run;

%loop(out=total, from=1708, to=2207);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;1. Format your code, makes it much easier to work with&lt;/P&gt;
&lt;P&gt;2. If you drop the variable you will generate a warning on the PROC APPEND FORCE. I believe you can turn it off with an option if you want. Another alterntive, commented out is to set it to missing.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. This was tested and works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 19:59:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862022#M340479</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-03-02T19:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862029#M340481</link>
      <description>&lt;P&gt;Indentation does make the code much easier to read. But it helps to keep the indentations aligned.&lt;/P&gt;
&lt;P&gt;Notice how the %IF is not intended at the same left as the %LET.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1677787723165.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81021iDC18EC01D60FF7EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1677787723165.png" alt="Tom_0-1677787723165.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Keeping the indentation of the SAS code and the MACRO code independent will make it much easier to follow the logic of both.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro loop(out=total, from=, to=);
	%local fromdate todate i month;
	%let fromdate = %sysfunc(inputn(&amp;amp;from.01, yymmdd6));
	%let todate = %sysfunc(inputn(&amp;amp;to.01, yymmdd6));
	%put &amp;amp;=fromdate %sysfunc(putn(&amp;amp;fromdate, date9));
	%put &amp;amp;=todate %sysfunc(putn(&amp;amp;todate, date9));

	%do i=0 %to %sysfunc(intck(month, &amp;amp;fromdate, &amp;amp;todate));
		%let month=%sysfunc(intnx(month, &amp;amp;fromdate, &amp;amp;i), YYMMN4);

  data current;
	set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv birthday);
	month=&amp;amp;month.;
	uci_0=input(uci, 12.);
		%if %substr(&amp;amp;month, 3, 2)=07 %then %do;
	drop birthday;
	*call missing(birthday);
		%end;
  run;

  proc append data=current base=&amp;amp;out force;
  run;

	%end;
%mend;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now the %IF is aligned with the %LET and the DROP is aligned with the SET.&lt;/P&gt;
&lt;P&gt;Personally I don't indent the body of a macro , but that is because I normally write autocall macros where the macro definition is its own file and it would a silly waste of line space to indent every line in a file.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 20:14:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862029#M340481</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-03-02T20:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862043#M340486</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/159"&gt;@Tom&lt;/a&gt;&amp;nbsp; &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;Below is the code that works. If i may ask a follow-up question, what if i want to fill in the missing birthdays with the values from files when month ends with 07? Currently using the following code, birthdays will be missing if month doesn't end with 07, what if i want to fill in those missing birthdays using values from 07 files by ID (uci)?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro loop(out=total,from=,to=);
%local fromdate todate i month ;
%let fromdate = %sysfunc(inputn(&amp;amp;from.01,yymmdd6));
%let todate = %sysfunc(inputn(&amp;amp;to.01,yymmdd6));
%put &amp;amp;=fromdate %sysfunc(putn(&amp;amp;fromdate,date9));
%put &amp;amp;=todate %sysfunc(putn(&amp;amp;todate,date9));

%do i= 0 %to %sysfunc(intck(month,&amp;amp;fromdate,&amp;amp;todate));
  %let month=%sysfunc(intnx(month,&amp;amp;fromdate,&amp;amp;i),YYMMN4);

  data current; 
	set LCMF.cm20&amp;amp;month (keep=UCI Status RCAbrv birthday); 
		month=&amp;amp;month.; 
		uci_0=input(uci,12.); 
		%if %substr(&amp;amp;month, 3, 2) ne 07 %then %do;
			call missing (birthday);
		%end;
	run;

  	proc append data=current base=&amp;amp;out force; 
  	run;

  %end;
%mend;

proc delete data=total ; run;
%loop(out=total,from=1708,to=1807);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 21:45:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862043#M340486</guid>
      <dc:creator>kevsma</dc:creator>
      <dc:date>2023-03-02T21:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862047#M340489</link>
      <description>I'd probably do that outside of this step. Are you assuming each years values would be filled in? You can create a subset and then merge the data back in is probably the easiest method. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Mar 2023 22:28:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862047#M340489</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2023-03-02T22:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to keep the value of a certain date when appending large volume of data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862084#M340514</link>
      <description>&lt;P&gt;Maybe it is easier to just set all the datasets in a single step:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%macro indata(from=,to=);
  %do from=&amp;amp;from %to &amp;amp;to;
    %if %substr(&amp;amp;from,3)=13 %then
       %let from=%eval(&amp;amp;from+88);
    %do; LCMF.cm20&amp;amp;from(keep=UCI Status RCAbrv %if %substr(&amp;amp;from,3)=7 %then birthday;)%end; /* %do..%end; to avoid spurious blanks */
    %end;
%mend;

data&amp;nbsp;total;
&amp;nbsp;&amp;nbsp;set&amp;nbsp;%indata(from=1708,to=2207) indsname=_name;
  month=input(substr(_name,length(_name)-4),4.0);
  uci_0=input(uci,12.);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;That way, you don't have to worry about BIRTHDAY not being in the first dataset you read, it will get there anyway.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2023 08:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-to-keep-the-value-of-a-certain-date-when-appending-large/m-p/862084#M340514</guid>
      <dc:creator>s_lassen</dc:creator>
      <dc:date>2023-03-03T08:49:37Z</dc:date>
    </item>
  </channel>
</rss>

