<?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 remove duplicates from the table? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608949#M211757</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/248216"&gt;@wanda619&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;the search you shared is incomplete, I cannot see the first part of your search.&lt;/P&gt;&lt;P&gt;Anyway, I see something not correct, e.g. when you write&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats count as Result by LicenseKey, Error_Code
| eval Client=coalesce(Client,LicenseKey)&lt;/LI-CODE&gt;&lt;P&gt;the second row is unuseful because after a stats command you have only the fields in stats, so you haven't the Client filed you used in coalesce, probably you have to put it before the stats command.&lt;/P&gt;&lt;P&gt;Then If you use a macro, I cannot see its content.&lt;/P&gt;&lt;P&gt;Then using the lookup command (&lt;SPAN&gt;| lookup uyz LicenseKey OUTPUT Client)&amp;nbsp;&lt;/SPAN&gt;you already have the "Client" field so in this way you override the original values for this field.&lt;/P&gt;&lt;P&gt;So, my hint is to re-design your search starting from the main search.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Wed, 10 Aug 2022 06:17:59 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2022-08-10T06:17:59Z</dc:date>
    <item>
      <title>How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608482#M211566</link>
      <description>&lt;P&gt;Hi community,&lt;/P&gt;&lt;P&gt;I have table like below -&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Error_code&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Error Results&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1003&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1003&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1013&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1027&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1027&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1013&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;Total&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;16&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to have distinct error codes in the table combining error results as well. I tries stats, dedup, didn't work&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 15:14:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608482#M211566</guid>
      <dc:creator>wanda619</dc:creator>
      <dc:date>2022-08-05T15:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608483#M211567</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/248216"&gt;@wanda619&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;let me understand: you want to have the number or error_results for each client and error_code, is it correct'&lt;/P&gt;&lt;P&gt;you can use stats:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your_search&amp;gt;
| stats sum(Error_Results) AS Error_Results BY Client Error_Code&lt;/LI-CODE&gt;&lt;P&gt;If instead you want to know how many Error_Codes you have for each Client, you can try:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your_search&amp;gt;
| stats dc (Error_Code) AS Error_Code_count BY Client&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 05 Aug 2022 15:23:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608483#M211567</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-05T15:23:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608512#M211580</link>
      <description>&lt;P&gt;Yes, I am looking for such output -&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Error_code&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;&lt;STRONG&gt;Error Results&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1003&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1013&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;1027&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;8&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="208"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;Total&lt;/P&gt;&lt;/TD&gt;&lt;TD width="208"&gt;&lt;P&gt;16&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 05 Aug 2022 16:13:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608512#M211580</guid>
      <dc:creator>wanda619</dc:creator>
      <dc:date>2022-08-05T16:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608514#M211581</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/248216"&gt;@wanda619&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;ok, the first solution is the correct one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;your_search&amp;gt;
| stats sum(Error_Results) AS Error_Results BY Client Error_Code
| addcoltotals labelfield="Error_Code" label="Total"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 06:01:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608514#M211581</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-10T06:01:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608750#M211671</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;&lt;STRONG&gt;Error&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;&lt;STRONG&gt;Error Results&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;&lt;STRONG&gt;Error ResultsPrevious week&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;&lt;STRONG&gt;Percent of Total &lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;&lt;STRONG&gt;PercentDifference&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1003&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="132"&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD width="70"&gt;&lt;P&gt;12.5&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1003&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;12.5&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1013&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;342&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;-50&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1027&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1027&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;xyz&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;43&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;zyz&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;1013&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;zyz&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;432&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;et&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="79"&gt;&lt;P&gt;abc&lt;/P&gt;&lt;/TD&gt;&lt;TD width="113"&gt;&lt;P&gt;Total&lt;/P&gt;&lt;/TD&gt;&lt;TD width="90"&gt;&lt;P&gt;16&lt;/P&gt;&lt;/TD&gt;&lt;TD width="128"&gt;&lt;P&gt;zyds&lt;/P&gt;&lt;/TD&gt;&lt;TD width="74"&gt;&lt;P&gt;423&lt;/P&gt;&lt;/TD&gt;&lt;TD width="139"&gt;&lt;P&gt;tert&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code is&amp;nbsp; &amp;nbsp;--&amp;nbsp;&lt;/P&gt;&lt;P&gt;| bucket _time span=1w&lt;/P&gt;&lt;P&gt;| stats count as Result by LicenseKey, Error_Code&lt;/P&gt;&lt;P&gt;&amp;nbsp;| eval Client=coalesce(Client,LicenseKey)&lt;/P&gt;&lt;P&gt;| eventstats sum(Result) as Total by Client&lt;/P&gt;&lt;P&gt;| eval PercentOfTotal = round((Result/Total)*100,3)&lt;/P&gt;&lt;P&gt;| sort - _time&lt;/P&gt;&lt;P&gt;| streamstats current=f latest(Result) as Result_Prev by LicenseKey&lt;/P&gt;&lt;P&gt;| eval PercentDifference = round(((Result/Result_Prev)-1)*100,2)&lt;/P&gt;&lt;P&gt;| fillnull value="0"&lt;/P&gt;&lt;P&gt;| append&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [ search index=abc sourcetype=yxx source= bff ErrorCode!=0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | `DedupDHI`&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | lookup abc LicenseKey OUTPUT Client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | eval Client=coalesce(Client,LicenseKey)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | stats count as Result by Client&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; | eval ErrorCode="Total", PercentOfTotal=100]&lt;/P&gt;&lt;P&gt;| lookup xyz_ErrorCodes ErrorCode OUTPUT Description&lt;/P&gt;&lt;P&gt;| lookup uyz LicenseKey OUTPUT Client&lt;/P&gt;&lt;P&gt;| eval Client=coalesce(Client,LicenseKey)&lt;/P&gt;&lt;P&gt;| eval Error=if(ErrorCode!="Total", ErrorCode+" ("+coalesce(Description,"Description Missing - Update xyz_ErrorCodes")+")", ErrorCode)&lt;/P&gt;&lt;P&gt;| fields Client, Error, Result, PercentOfTotal, PercentDifference, Error results previous week&lt;/P&gt;&lt;P&gt;| sort CustomerName, Error, PercentDifference&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Still not able to figure out the duplicate row issue, single row for one each error combined with total.&lt;/P&gt;&lt;P&gt;any suggestions please?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2022 21:10:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608750#M211671</guid>
      <dc:creator>wanda619</dc:creator>
      <dc:date>2022-08-08T21:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608943#M211754</link>
      <description>&lt;P&gt;Suppose all you want is to tally by Error_code, this simple stats should do:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats values(Client) as Client sum(eval('Error Results')) as "Error Results" by Error_code&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;You may want to manage how "Client" column is presented if there are many. &amp;nbsp;But the basic idea will be the same&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 03:34:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608943#M211754</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-08-10T03:34:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove duplicates from the table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608949#M211757</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/248216"&gt;@wanda619&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;the search you shared is incomplete, I cannot see the first part of your search.&lt;/P&gt;&lt;P&gt;Anyway, I see something not correct, e.g. when you write&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| stats count as Result by LicenseKey, Error_Code
| eval Client=coalesce(Client,LicenseKey)&lt;/LI-CODE&gt;&lt;P&gt;the second row is unuseful because after a stats command you have only the fields in stats, so you haven't the Client filed you used in coalesce, probably you have to put it before the stats command.&lt;/P&gt;&lt;P&gt;Then If you use a macro, I cannot see its content.&lt;/P&gt;&lt;P&gt;Then using the lookup command (&lt;SPAN&gt;| lookup uyz LicenseKey OUTPUT Client)&amp;nbsp;&lt;/SPAN&gt;you already have the "Client" field so in this way you override the original values for this field.&lt;/P&gt;&lt;P&gt;So, my hint is to re-design your search starting from the main search.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 06:17:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-remove-duplicates-from-the-table/m-p/608949#M211757</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-10T06:17:59Z</dc:date>
    </item>
  </channel>
</rss>

