<?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 rename multiple fields dynamically? in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615436#M11646</link>
    <description>&lt;P&gt;I realised my Quarter eval had an error. I tested it again. Try this instead:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Complete Example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;index=mydata earliest=-2q@q latest=-q@q &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_earlier values(Quarter) as Quarter by Country &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| appendcols &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ search index=mydata earliest=-q@q latest=@q&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_later values(Quarter) as Quarter by Country] &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_earlier=round(count_earlier/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_later=round(count_later/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval DiffPer=round(((count_later - count_earlier) / count_earlier) * 100,0)."%" &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| table ReportersCountry,count_earlier,ave_earlier,count_later,ave_later,DiffPer,Quarter&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rename count_earlier as Quarter." Total", ave_earlier as Quarter." Monthly Avg",count_later as Quarter." Total", ave_later as Quarter." Monthly Avg"&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Sep 2022 17:15:18 GMT</pubDate>
    <dc:creator>FelixLeh</dc:creator>
    <dc:date>2022-09-30T17:15:18Z</dc:date>
    <item>
      <title>How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615408#M11639</link>
      <description>&lt;P&gt;Hello, I've been asked to create a report that will show the number of events from the 2 previous quarters by country, the monthly average, and the quarterly percent increase:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;Country&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;Q1'22 Total&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;Q1'22 Monthly Avg&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;Q2'22 Total&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;Q2'22 Monthly Avg&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;Q2'22 Percent Increase&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;US&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;300000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;100000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;330000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;110000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;10%&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;UK&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;60000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;20000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;61000&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;20333&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;2%&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;Canada&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;1200&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;400&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;1500&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;500&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;25%&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=mydata earliest=-2q@q latest=-q@q 
| chart dc(ID) as count_earlier by Country 
| appendcols 
    [ search index=mydata earliest=-q@q latest=@q
    | chart dc(ID) as count_later by Country] 
| eval ave_earlier=round(count_earlier/3,0) 
| eval ave_later=round(count_later/3,0) 
| eval DiffPer=round(((count_later - count_earlier) / count_earlier) * 100,0)."%" 
| table ReportersCountry,count_earlier,ave_earlier,count_later,ave_later,DiffPer&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now I'm trying to rename count_earlier, ave_earlier, count_later, and ave_later to be the quarter labels. I've been using:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;| convert TIMEFORMAT="%m" ctime(_time) AS month 
| rex field=date_year "\d{2}(?&amp;lt;short_year&amp;gt;\d{2})"
| eval quarter=case(month&amp;lt;=3,"Q1",month&amp;lt;=6,"Q2",month&amp;lt;=9,"Q3",month&amp;lt;=12,"Q4",1=1,"missing")."'".short_year&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And have been trying to use eval {} to rename the columns but haven't quite figured it out.&lt;/P&gt;
&lt;P&gt;I also tried using chart which allows me to get the quarter headers, but then I couldn't figure out how to calculate the percent difference column.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for any help in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 14:48:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615408#M11639</guid>
      <dc:creator>jasmartin</dc:creator>
      <dc:date>2022-09-30T14:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615411#M11640</link>
      <description>&lt;P&gt;Try using the chart command over Country by Quarter to show the individual count of quarters!&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;your search&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Quarter 1",Month&amp;lt;=6,"Quarter 2",Month&amp;lt;=9,"Quarter 3",Month&amp;lt;=12,"Quarter 4")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| chart count over Country by Quarter&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;_______________________________________&lt;/P&gt;&lt;P&gt;If this was helpful please consider awarding Karma. Thx!&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 15:31:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615411#M11640</guid>
      <dc:creator>FelixLeh</dc:creator>
      <dc:date>2022-09-30T15:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615412#M11641</link>
      <description>&lt;P&gt;Thanks! That's basically was what I was starting with, but I didn't know how to calculate the percentage increase column after that since the quarter columns would be dynamically added.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 15:36:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615412#M11641</guid>
      <dc:creator>jasmartin</dc:creator>
      <dc:date>2022-09-30T15:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615414#M11642</link>
      <description>&lt;P&gt;I somehow didn't see your mention that you already tried that, my bad! I'm interested in answering this but have no answer for now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 15:54:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615414#M11642</guid>
      <dc:creator>FelixLeh</dc:creator>
      <dc:date>2022-09-30T15:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615416#M11643</link>
      <description>&lt;P&gt;This is the other query I'm trying, but the DiffPerc field is not showing up:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=mydata earliest=-2q@q latest=-q@q 
| dedup ID 
| convert TIMEFORMAT="%m" ctime(_time) AS month 
| rex field=date_year "\d{2}(?&amp;lt;short_year&amp;gt;\d{2})" 
| eval quarter=case(month&amp;lt;=3,"Q1",month&amp;lt;=6,"Q2",month&amp;lt;=9,"Q3",month&amp;lt;=12,"Q4",1=1,"missing")."'".short_year 
| chart count(ID) as count_earlier by Country, quarter 
| appendcols 
    [ search index=mydata earliest=-q@q latest=@q 
    | dedup ID 
    | convert TIMEFORMAT="%m" ctime(_time) AS month 
    | rex field=date_year "\d{2}(?&amp;lt;short_year&amp;gt;\d{2})" 
    | eval quarter=case(month&amp;lt;=3,"Q1",month&amp;lt;=6,"Q2",month&amp;lt;=9,"Q3",month&amp;lt;=12,"Q4",1=1,"missing")."'".short_year 
    | chart count(ID) as count_later by Country, quarter]
    | eval DiffPer=round(((count_later - count_earlier) / count_earlier) * 100,0)."%"&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 30 Sep 2022 16:18:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615416#M11643</guid>
      <dc:creator>jasmartin</dc:creator>
      <dc:date>2022-09-30T16:18:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615418#M11644</link>
      <description>&lt;P&gt;How about this? I add the Quarter including the year in the initial stats function and later add it with a . into the rename.&lt;BR /&gt;&lt;BR /&gt;| rename ORIGINAL_FIELD as QUARTER_VALUE." STRING VALUE"&lt;/P&gt;&lt;P&gt;This way the Quarter Value changes depending on the input of the search.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;index=mydata earliest=-2q@q latest=-q@q &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y") &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"1 ".Year,Month&amp;lt;=6,"2 ".Year,Month&amp;lt;=9,"3 ".Year,Month&amp;lt;=12,"4 ".Year)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_earlier values(Quarter) as Quarter by Country &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| appendcols &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ search index=mydata earliest=-q@q latest=@q&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y") &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"1 ".Year,Month&amp;lt;=6,"2 ".Year,Month&amp;lt;=9,"3 ".Year,Month&amp;lt;=12,"4 ".Year)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_later values(Quarter) as Quarter by Country] &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_earlier=round(count_earlier/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_later=round(count_later/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval DiffPer=round(((count_later - count_earlier) / count_earlier) * 100,0)."%" &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| table ReportersCountry,count_earlier,ave_earlier,count_later,ave_later,DiffPer,Quarter&lt;BR /&gt;&lt;/STRONG&gt;&lt;STRONG&gt;| rename count_earlier as Quarter." Total", ave_earlier as Quarter." Monthly Avg",count_later as Quarter." Total", ave_later as Quarter." Monthly Avg"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;Is this what you were looking for?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;_______________________________________&lt;/P&gt;&lt;P&gt;If this was helpful please consider awarding Karma. Thx!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 16:36:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615418#M11644</guid>
      <dc:creator>FelixLeh</dc:creator>
      <dc:date>2022-09-30T16:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615419#M11645</link>
      <description>&lt;P&gt;Unfortunately, the rename doesn't replace Quarter with the value, that's where I was trying to use eval {} to make a field name based on the contents of another field.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 16:36:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615419#M11645</guid>
      <dc:creator>jasmartin</dc:creator>
      <dc:date>2022-09-30T16:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to rename multiple fields dynamically?</title>
      <link>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615436#M11646</link>
      <description>&lt;P&gt;I realised my Quarter eval had an error. I tested it again. Try this instead:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Complete Example:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;index=mydata earliest=-2q@q latest=-q@q &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_earlier values(Quarter) as Quarter by Country &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| appendcols &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ search index=mydata earliest=-q@q latest=@q&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Year = strftime(_time,"%Y")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Month = strftime(_time,"%m")&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rex field=Year "..(?&amp;lt;year_short&amp;gt;..)"&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval Quarter = case(Month&amp;lt;=3,"Q1'",Month&amp;lt;=6,"Q2'",Month&amp;lt;=9,"Q3'",Month&amp;lt;=12,"Q4'"),Quarter=Quarter.year_short&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| stats dc(ID) as count_later values(Quarter) as Quarter by Country] &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_earlier=round(count_earlier/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval ave_later=round(count_later/3,0) &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| eval DiffPer=round(((count_later - count_earlier) / count_earlier) * 100,0)."%" &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| table ReportersCountry,count_earlier,ave_earlier,count_later,ave_later,DiffPer,Quarter&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;| rename count_earlier as Quarter." Total", ave_earlier as Quarter." Monthly Avg",count_later as Quarter." Total", ave_later as Quarter." Monthly Avg"&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 17:15:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/How-to-rename-multiple-fields-dynamically/m-p/615436#M11646</guid>
      <dc:creator>FelixLeh</dc:creator>
      <dc:date>2022-09-30T17:15:18Z</dc:date>
    </item>
  </channel>
</rss>

