<?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 do I search for Filed Values in a Different Multi-Value Field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660712#M228110</link>
    <description>&lt;P&gt;Please share the existing &lt;FONT face="courier new,courier"&gt;eval&lt;/FONT&gt; statement so someone can figure out how to add &lt;FONT face="courier new,courier"&gt;mvfind&lt;/FONT&gt;.&lt;/P&gt;</description>
    <pubDate>Fri, 13 Oct 2023 18:16:27 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2023-10-13T18:16:27Z</dc:date>
    <item>
      <title>How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660691#M228096</link>
      <description>&lt;P&gt;I have two fields: DNS and DNS_Matched. The latter is a multi-value field. How can I see if a field value in DNS is in one&amp;nbsp; of the multi-value field in DNS_Matched?&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;DNS&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;DNS_Matached&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;host1&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;host1&lt;BR /&gt;host1-a&lt;BR /&gt;host1-r&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="50%" height="25px"&gt;host2&lt;/TD&gt;&lt;TD width="50%" height="25px"&gt;host2&lt;BR /&gt;host2-a&lt;BR /&gt;host2-r&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 13 Oct 2023 16:02:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660691#M228096</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-13T16:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660692#M228097</link>
      <description>&lt;P&gt;Use the &lt;FONT face="courier new,courier"&gt;mvfind&lt;/FONT&gt; function.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval present=if(isnotnull(mvfind(DNS_Matched, DNS)),"yes", "no")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 16:38:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660692#M228097</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-13T16:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660708#M228106</link>
      <description>&lt;P&gt;This worked in a vacuum but I get an error saying it's expecting IN when I tried adding it to existing Eval statement&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 17:52:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660708#M228106</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-13T17:52:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660712#M228110</link>
      <description>&lt;P&gt;Please share the existing &lt;FONT face="courier new,courier"&gt;eval&lt;/FONT&gt; statement so someone can figure out how to add &lt;FONT face="courier new,courier"&gt;mvfind&lt;/FONT&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 18:16:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660712#M228110</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-13T18:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660716#M228113</link>
      <description>&lt;P&gt;Matched=if(match(DNS,Identified_Host_Formatted) OR match(DNS,DNS_Matched),1,0)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I Would like to add the search you created to this. These existing only work on single valued fields&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 18:30:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660716#M228113</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-13T18:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660729#M228120</link>
      <description>&lt;P&gt;Use &lt;FONT face="courier new,courier"&gt;mvfind&lt;/FONT&gt; in place of &lt;FONT face="courier new,courier"&gt;match&lt;/FONT&gt; for multi-value fields.&lt;/P&gt;</description>
      <pubDate>Fri, 13 Oct 2023 18:55:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660729#M228120</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-13T18:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660890#M228177</link>
      <description>&lt;P&gt;This didn't seem to work. I got error saying it could only use Boolean, or an error if around the if fucntion if I used isnotnull. Can you please type out waht you're thinking with the 3 clauses please?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 15:37:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660890#M228177</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-16T15:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660891#M228178</link>
      <description>&lt;P&gt;This is what I'm thinking.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Matched=if(isnotnull(mvfind(DNS,Identified_Host_Formatted)) OR isnotnull(mvfind(DNS,DNS_Matched)),1,0)&lt;/LI-CODE&gt;&lt;P&gt;If it doesn't work then please include the exact query you're testing in your reply.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 15:41:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660891#M228178</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-16T15:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660903#M228181</link>
      <description>&lt;P&gt;The results were literally the same as my originally search. My search is not different now than what I used from yours.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 16:46:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660903#M228181</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-16T16:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660904#M228182</link>
      <description>&lt;P&gt;My requirements are, using mulit-values, if DNS is listed in DNS_Matched, have matched=1&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 16:47:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660904#M228182</guid>
      <dc:creator>atebysandwich</dc:creator>
      <dc:date>2023-10-16T16:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do I search for Filed Values in a Different Multi-Value Field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660916#M228185</link>
      <description>&lt;P&gt;It's time to stop the piecemeal business.&amp;nbsp; Please share the &lt;STRONG&gt;full&lt;/STRONG&gt; (sanitized, if necessary) query that produces the current results and perhaps someone can find a way to produce the desired results.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Oct 2023 17:37:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-search-for-Filed-Values-in-a-Different-Multi-Value/m-p/660916#M228185</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-10-16T17:37:51Z</dc:date>
    </item>
  </channel>
</rss>

