<?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 fill null value of multi value fields with other value in search output in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476901#M133873</link>
    <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; thanks again.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2020 13:13:13 GMT</pubDate>
    <dc:creator>sharif_ahmmad</dc:creator>
    <dc:date>2020-01-10T13:13:13Z</dc:date>
    <item>
      <title>How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476889#M133861</link>
      <description>&lt;P&gt;Hello Community,&lt;/P&gt;

&lt;P&gt;I need to fill null value of multi-field values with any value , i.e 0 or Not found.&lt;/P&gt;

&lt;P&gt;Here's the sample data in table&lt;/P&gt;

&lt;P&gt;Sample Table&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Customer_Id           Counter_ID    Customer_Name               Desk_ID        Purchased_Item

     121                                                            1                     Pen

     121                                                            1                     Pencil
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Expected Output   &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; Customer_Id      Counter_ID        Customer_Name     Desk_ID         Purchased_Item

   121                  0                     0              1                       Pen

   121                   0                     0              1                      Pencil
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;current Output   &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; Customer_Id        Counter_ID      Customer_Name        Desk_ID           Purchased_Item

   121                       0                0             1                                 Pen

                                                            1                                Pencil
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Where what i wrote so far.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats list(Customer_Id) as Customer_id, stats list(Counter _Id) as Counter _id, stats list(Customer_Name) as Customer_Name,

stats list(Desk_ID) as Desk_ID, stats list(Purchased_Item) as Purchased_Item By Customer_Id | fillnull value=0 Counter_ID Customer_Name
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Not sure how to proceed from here. Tried using foreach. But can't get what i want.&lt;/P&gt;

&lt;P&gt;Any help would be really appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 16:32:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476889#M133861</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-08T16:32:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476890#M133862</link>
      <description>&lt;P&gt;Is the fillnull command not an option? You can fill either a specific field, i.e.:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| fillnull Counter_Id value=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;or a catch all fill null:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|fillnull value="N/A"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;You can also do checks with the |where or |eval command for if things are null, and then filling them accordingly (a little more abstract for this use case but in general it's helpful to use sometimes) &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.1/SearchReference/InformationalFunctions#isnotnull.28X.29"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.1/SearchReference/InformationalFunctions#isnotnull.28X.29&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Either:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| where isnotnull(fieldName)
or
|eval fieldName=if(isnull(fieldName), someAction, fieldName)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 18:19:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476890#M133862</guid>
      <dc:creator>aberkow</dc:creator>
      <dc:date>2020-01-08T18:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476891#M133863</link>
      <description>&lt;P&gt;Hi @aberkow , thanks. but if you see my shared query i already tried with fillnull value. But what it does is fill of the null value of first row multi valued fields. What i need also is the same thing  for the second row, which i am having problem with.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 18:43:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476891#M133863</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-08T18:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476892#M133864</link>
      <description>&lt;P&gt;Hi @sharif_ahmmad,&lt;/P&gt;

&lt;P&gt;If I understand your query correctly then replacing your entire stats statement with this would give you the result you're looking for :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | table  Customer_Id, Counter_ID, Customer_Name, Desk_ID, Purchased_Item
    | fillnull value=0 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This would work because all you're trying to do is list the info, not trying to do any real aggregation.&lt;/P&gt;

&lt;P&gt;The above search won't run fast though, so you can improve it by using something along those lines : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats  values(Counter _Id) as Counter _id  values(Customer_Name) as Customer_Name values(Desk_ID) as Desk_ID  By Customer_Id,Purchased_Item
   | fillnull value=0 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will include some multi-value fields that you can break using  &lt;CODE&gt;| mvexpand fieldname&lt;/CODE&gt;.&lt;BR /&gt;
Your final search should look something like this : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | stats  values(Counter _Id) as Counter _id  values(Customer_Name) as Customer_Name values(Desk_ID) as Desk_ID  By Customer_Id,Purchased_Item
   | fillnull value=0 
   | mvexpand whicheverFieldHasMultiValue
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Let me know if this helps.&lt;/P&gt;

&lt;P&gt;Cheers,&lt;BR /&gt;
David&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 20:00:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476892#M133864</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2020-01-08T20:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476893#M133865</link>
      <description>&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/793746/problem-with-keeping-relevant-data-in-the-same-row.html"&gt;your previous question&lt;/A&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval Counter_ID = if(source = "A" AND isnull(Counter_ID), "N/A", Counter_ID)
| eval Customer_Name = if(source = "A" AND isnull(Customer_Name), "N/A", Customer_Name)
| stats . . . 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;before &lt;CODE&gt;stats&lt;/CODE&gt;,  you should fill null values.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 21:19:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476893#M133865</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-08T21:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476894#M133866</link>
      <description>&lt;PRE&gt;&lt;CODE&gt; ... | stats ...
| eval null_fill = mvrange(0,mvcount(Customer_Id))
| rex field=null_fill mode=sed "s/\d+/NA/g"
| eval Counter_ID=mvappend(Counter_ID,null_fill)
| eval Customer_Name = mvappend(Customer_Name,null_fill)
| eval Counter_ID=mvindex(Counter_ID,0,mvcount(Customer_Id))
| eval Customer_Name =mvindex(Customer_Name,0,mvcount(Customer_Id))
| table  Customer_Id, Counter_ID, Customer_Name, Desk_ID, Purchased_Item
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;maybe works.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 21:49:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476894#M133866</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-08T21:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476895#M133867</link>
      <description>&lt;P&gt;@to4kawa thanks. I will let you know which one works once i get to test them.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 00:38:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476895#M133867</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-09T00:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476896#M133868</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/68181"&gt;@DavidHourani&lt;/a&gt; thanks. i like the idea of mvexpanding. Will let you know if it works. &lt;/P&gt;

&lt;P&gt;But in the mean time, Can we use any other option than stats values() or table command ? Because stats values() will break the natural event order of log. no? And in this scenario table command will not put all the relevant values in the same row. I forgot to mention, for this case &lt;EM&gt;Desk_ID &amp;amp; Purchased_Item&lt;/EM&gt; belongs to separate sourcetype than &lt;EM&gt;Counter _Id &amp;amp; Customer_Name&lt;/EM&gt;. &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:32:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476896#M133868</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-09-30T03:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476897#M133869</link>
      <description>&lt;P&gt;Hi @sharif_ahmmad,&lt;/P&gt;

&lt;P&gt;In case &lt;CODE&gt;values()&lt;/CODE&gt; doesn't work for you, you can stick with &lt;CODE&gt;list()&lt;/CODE&gt;. I used &lt;CODE&gt;values()&lt;/CODE&gt; to avoid duplicated, but in your case I guess you need to keep the duplicates.&lt;/P&gt;

&lt;P&gt;This point is crucial as this means that you must use aggregation to join the events : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;I forgot to mention, for this case Desk_ID &amp;amp; Purchased_Item belongs to separate sourcetype than Counter _Id &amp;amp; Customer_Name.
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Since the only common field in that case is &lt;CODE&gt;Customer_Id&lt;/CODE&gt; then the search should actually be like this : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; ... | stats  list(Counter _Id) as Counter _id  list(Customer_Name) as Customer_Name list(Desk_ID) as Desk_ID  list(Purchased_Item) as Purchased_Item By Customer_Id
    |mvexpand Purchased_Item
    |mvexpand Desk_ID
    | fillnull value=0 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Let me know if this works any better for you.&lt;BR /&gt;
Cheers,&lt;BR /&gt;
David&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 08:40:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476897#M133869</guid>
      <dc:creator>DavidHourani</dc:creator>
      <dc:date>2020-01-09T08:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476898#M133870</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Can try to use fillnull befor stats command, like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| makeresults count=1
     | eval data = "121 1 Pen;121 1 Pencil"
     | makemv delim=";" data
     | mvexpand data
     | rex field=data "(?&amp;lt;Customer_Id&amp;gt;[^\s]+)\s(?&amp;lt;Desk_ID&amp;gt;\d+)\s(?&amp;lt;Purchased_Item&amp;gt;\w+)"
     | table Customer_Id Counter_ID Customer_Name Desk_ID Purchased_Item
     | fillnull Counter_ID Customer_Name value=0
     | stats list(Counter_ID) as Counter_ID, list(Customer_Name) as Customer_Name, list(Desk_ID) as Desk_ID, list(Purchased_Item) as Purchased_Item by Customer_Id
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Smile Splunk &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2020 09:22:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476898#M133870</guid>
      <dc:creator>TISKAR</dc:creator>
      <dc:date>2020-01-09T09:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476899#M133871</link>
      <description>&lt;P&gt;works like a charm. All i needed to added if(isnull) check along with mvappend &lt;/P&gt;

&lt;P&gt;eval Counter_ID=if(isnull(Counter_ID), mvappend(Counter_ID,null_fill),Counter_ID)&lt;/P&gt;

&lt;P&gt;Thanks a lot &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:33:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476899#M133871</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-09-30T03:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476900#M133872</link>
      <description>&lt;P&gt;and ,you are Splunk Ninja  &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 12:02:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476900#M133872</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-10T12:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476901#M133873</link>
      <description>&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2020 13:13:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476901#M133873</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-10T13:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476902#M133874</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/184221"&gt;@to4kawa&lt;/a&gt; hi, just wanted to follow up on this? While this works for the mentioned scenrio. but it doesn't work if there is already a value. Like this,&lt;/P&gt;

&lt;P&gt;Customer_Id           Counter_ID    Customer_Name               Desk_ID        Purchased_Item&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  121                              1                             1                     Pen

  121                                                            1                     Pencil
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Any idea what to do, if i want to fill up the vacant counter_id with some value? Would really appreciate the help.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:40:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476902#M133874</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-09-30T03:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476903#M133875</link>
      <description>&lt;P&gt;&lt;CODE&gt;filldown&lt;/CODE&gt; and &lt;CODE&gt;fillnull&lt;/CODE&gt; , maybe.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 04:41:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476903#M133875</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-16T04:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476904#M133876</link>
      <description>&lt;P&gt;before that stats command?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 04:44:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476904#M133876</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-16T04:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476905#M133877</link>
      <description>&lt;P&gt;after &lt;CODE&gt;stats&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 05:07:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476905#M133877</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-16T05:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476906#M133878</link>
      <description>&lt;P&gt;thanks for the tips. Will let you know if it works.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jan 2020 05:34:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476906#M133878</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-16T05:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476907#M133879</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;| makeresults
| eval _raw="Customer_Id,Counter_ID,Customer_Name,Desk_ID,Purchased_Item
121,1,,1,Pen
121,,,1,Pencil"
| multikv forceheader=1
| table Customer_Id,Counter_ID,Customer_Name,Desk_ID,Purchased_Item
| filldown
| fillnull Counter_ID,Customer_Name,Desk_ID value="N/A"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;e.g. &lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 03:39:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476907#M133879</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-01-17T03:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to fill null value of multi value fields with other value in search output</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476908#M133880</link>
      <description>&lt;P&gt;@to4kawa Thanks a lot. &lt;/P&gt;</description>
      <pubDate>Fri, 17 Jan 2020 11:01:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-fill-null-value-of-multi-value-fields-with-other-value-in/m-p/476908#M133880</guid>
      <dc:creator>sharif_ahmmad</dc:creator>
      <dc:date>2020-01-17T11:01:29Z</dc:date>
    </item>
  </channel>
</rss>

