<?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: Field comparison with multi-value columns in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/540000#M8770</link>
    <description>&lt;P&gt;Not the prettiest, but I was fiddling around with an approach to dynamically construct your search criteria for when you have multiple, unknown number of products.&amp;nbsp; They need to have a consistent naming convention (e.g. end in -Latest as per your demo data), and I've only experimented with Major/Minor number i.e. 11.3 not 11.3.2, but I think the general pattern applies.&amp;nbsp; There's a bit of duplicated code regarding the construction of the field called 'search'.&amp;nbsp; I had hoped I'd be able to do it without the duplication but for now I'm relying on it&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3
server2.com	11.3.1.0	11.3.1.2|11.5.1.1	6.8	6.10|7.9
server3.com	11.7.0.2	11.7.1.1	7.4	6.10|7.9" 
| multikv forceheader=1 
| fields - _time _raw linecount 
| eval search="" 
| foreach *_Latest 
    [ eval &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest=split(&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest,"|") 
    | mvexpand &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest 
    | rex field=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest "(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj&amp;gt;\d+).(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin&amp;gt;\d+)" 
    | rex field=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Ver "(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj&amp;gt;\d+).(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin&amp;gt;\d+)" 
    | eval search=search." OR (&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj AND &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin)"] 
| where 
    [| makeresults 
    | eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3" 
    | multikv forceheader=1 
    | eval search="" 
    | foreach *_Latest 
        [ eval search=search." OR (&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj AND &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin)"] 
    | eval search=substr(search,4)
    | return $search]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 Feb 2021 17:40:24 GMT</pubDate>
    <dc:creator>tread_splunk</dc:creator>
    <dc:date>2021-02-15T17:40:24Z</dc:date>
    <item>
      <title>Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539739#M8761</link>
      <description>&lt;P&gt;\Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have some data which looks likes this from a Splunk report:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="20%"&gt;Server&lt;/TD&gt;&lt;TD width="20%"&gt;Prod1-Ver&lt;/TD&gt;&lt;TD width="20%"&gt;Prod1-Latest&lt;/TD&gt;&lt;TD width="20%"&gt;Prod2-Ver&lt;/TD&gt;&lt;TD width="20%"&gt;Prod2-Latest&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;server1.com&lt;/TD&gt;&lt;TD width="20%"&gt;11.7.1.2&lt;/TD&gt;&lt;TD width="20%"&gt;11.7.1.2&lt;/TD&gt;&lt;TD width="20%"&gt;8.2&lt;/TD&gt;&lt;TD width="20%"&gt;8.3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;server2.com&lt;/TD&gt;&lt;TD width="20%"&gt;11.3.1.0&lt;/TD&gt;&lt;TD width="20%"&gt;11.3.1.2|11.5.1.1&lt;/TD&gt;&lt;TD width="20%"&gt;6.8&lt;/TD&gt;&lt;TD width="20%"&gt;6.10|7.9&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="20%"&gt;server3.com&lt;/TD&gt;&lt;TD width="20%"&gt;11.7.0.2&lt;/TD&gt;&lt;TD width="20%"&gt;11.7.1.1&lt;/TD&gt;&lt;TD width="20%"&gt;7.4&lt;/TD&gt;&lt;TD width="20%"&gt;6.10|7.9&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to be able to compare the Prod-Ver to the corresponding Prod-Latest. Some of the latest ones will have different products for different point releases or, in the above example, 11.3 or 11.5 can be used, in that example, I need to check the 11.3.1.0 against the 11.3.1.2 and not the 11.5.1.1.&lt;/P&gt;&lt;P&gt;I figure I will need to use mvexpand and have multiple rows, then exclude the ones not matching the higher point level.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Is there an easier way of doing it?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;to do what I suggested, I think I would need to have 4 versions of the same line (more when there are other products) to cover all combinations, i.e. server2.com line in above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2021 17:40:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539739#M8761</guid>
      <dc:creator>Cranie</dc:creator>
      <dc:date>2021-02-12T17:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539766#M8763</link>
      <description>&lt;P&gt;If you have Splunk 8, then you can use mvmap to perform tests on multivalue fields without having to go through the mvexpand route.&lt;/P&gt;&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.1.2/SearchReference/MultivalueEvalFunctions#mvmap.28X.2CY.29" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.1.2/SearchReference/MultivalueEvalFunctions#mvmap.28X.2CY.29&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2021 22:33:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539766#M8763</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-02-12T22:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539787#M8764</link>
      <description>&lt;P&gt;I made a bit of progress using mvexpand (I haven't experimented with mvmap yet)...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3
server2.com	11.3.1.0	11.3.1.2|11.5.1.1	6.8	6.10|7.9
server3.com	11.7.0.2	11.7.1.1	7.4	6.10|7.9" 
| multikv forceheader=1 
| fields - _time _raw linecount 
| foreach *_Latest 
    [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=split(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,"|") 
    | mvexpand &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;]&lt;/LI-CODE&gt;&lt;P&gt;I haven't worked out the logic for doing the version/latest comparison based on major / minor versions &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Feb 2021 13:12:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539787#M8764</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2021-02-13T13:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539909#M8766</link>
      <description>&lt;P&gt;Thanks for the code, will try that now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As for the reason, we have a product we use, DataStage (DS) and there are many supported Service Tier components. We have a DS inventory that collects DS, DB2 and WebSphere versions (among others).&lt;/P&gt;&lt;P&gt;For DB2 and WebSphere there are multiple supported major versions. So, for example, we have:&lt;/P&gt;&lt;P&gt;DS 11.5&lt;/P&gt;&lt;P&gt;This is supported on DB2 11.1 and 11.5 and WebSphere may be 9.0.0 and 9.0.5.&lt;/P&gt;&lt;P&gt;I now need to check the version to max supported version and see where there are discrepancies, this will then be enhanced with patch versions for the sub products, allowing us to manage the patches across the estate.&lt;/P&gt;&lt;P&gt;The original data collection is a little bit of a mess in terms of how it is collected and put into Splunk (3 columns and multivalue ones to work around our engineering limitations.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll check and confirm if this does what I want - thank you again for the help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 11:00:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539909#M8766</guid>
      <dc:creator>Cranie</dc:creator>
      <dc:date>2021-02-15T11:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539946#M8767</link>
      <description>&lt;P&gt;Will check this out too, thank you, I will check with is the better solution, I have managed it using the for loop mentioned above. (not sure if there is a "best" method of doing this. Thanks for the replies.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 12:54:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539946#M8767</guid>
      <dc:creator>Cranie</dc:creator>
      <dc:date>2021-02-15T12:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539959#M8768</link>
      <description>&lt;P&gt;This is the portion of code I have adapted from yours (my Splunk skills are not the best):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| foreach RHELSupportedMax DB2SupportedMax 
    [ eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;=split(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,"|") 
    | mvexpand &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;]

| eval RHELVersionMain=RHELVersion
| rex mode=sed field=RHELVersionMain "s/\..*//"
| eval RHELVersionMainMax=RHELSupportedMax
| rex mode=sed field=RHELVersionMainMax "s/\..*//"
| rex mode=sed field=RHELVersionMainMax "s/\..*//"


| eval DB2VersionMain=DB2Version
| rex mode=sed field=DB2VersionMain "s/\./&amp;amp;@/2"
| rex mode=sed field=DB2VersionMain "s/\.@.*//"


| eval DB2SupportedMaxMain=DB2SupportedMax
| rex mode=sed field=DB2SupportedMaxMain "s/\./&amp;amp;@/2"
| rex mode=sed field=DB2SupportedMaxMain "s/\.@.*//"


| where RHELVersionMain = RHELVersionMainMax
| where DB2VersionMain = DB2SupportedMaxMain&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This works as expected and shows the versions with the respective max version, thank you again.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 13:54:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539959#M8768</guid>
      <dc:creator>Cranie</dc:creator>
      <dc:date>2021-02-15T13:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539967#M8769</link>
      <description>&lt;P&gt;Good work!&amp;nbsp; What are you planning to do with the situation where&amp;nbsp;&lt;SPAN&gt;there are more than x2 products?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;I'm wondering whether there is a way for the SPL to deal with it.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 14:22:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/539967#M8769</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2021-02-15T14:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/540000#M8770</link>
      <description>&lt;P&gt;Not the prettiest, but I was fiddling around with an approach to dynamically construct your search criteria for when you have multiple, unknown number of products.&amp;nbsp; They need to have a consistent naming convention (e.g. end in -Latest as per your demo data), and I've only experimented with Major/Minor number i.e. 11.3 not 11.3.2, but I think the general pattern applies.&amp;nbsp; There's a bit of duplicated code regarding the construction of the field called 'search'.&amp;nbsp; I had hoped I'd be able to do it without the duplication but for now I'm relying on it&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3
server2.com	11.3.1.0	11.3.1.2|11.5.1.1	6.8	6.10|7.9
server3.com	11.7.0.2	11.7.1.1	7.4	6.10|7.9" 
| multikv forceheader=1 
| fields - _time _raw linecount 
| eval search="" 
| foreach *_Latest 
    [ eval &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest=split(&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest,"|") 
    | mvexpand &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest 
    | rex field=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Latest "(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj&amp;gt;\d+).(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin&amp;gt;\d+)" 
    | rex field=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_Ver "(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj&amp;gt;\d+).(?&amp;lt;&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin&amp;gt;\d+)" 
    | eval search=search." OR (&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj AND &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin)"] 
| where 
    [| makeresults 
    | eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3" 
    | multikv forceheader=1 
    | eval search="" 
    | foreach *_Latest 
        [ eval search=search." OR (&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMaj=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMaj AND &amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_LatestMin=&amp;lt;&amp;lt;MATCHSTR&amp;gt;&amp;gt;_VerMin)"] 
    | eval search=substr(search,4)
    | return $search]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2021 17:40:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/540000#M8770</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2021-02-15T17:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/540097#M8772</link>
      <description>&lt;P&gt;Much better approach (in my view) than my previous attempt...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval _raw="Server	Prod1-Ver	Prod1-Latest	Prod2-Ver	Prod2-Latest
server1.com	11.7.1.2	11.7.1.2	8.2	8.3
server2.com	11.3.1.0	11.3.1.2|11.5.1.1	6.8	6.10|7.9
server3.com	11.7.0.2	11.7.1.1	7.4	6.10|7.9
server4.com	11.3.1.0	11.5.1.1	6.8	6.8
server5.com	11.5.1.0	11.5.1.1	6.8	6.8
server6.com	11.5.1.0	11.5.1.1" 
| multikv forceheader=1 
| fields - _time _raw linecount 
| transpose 0 header_field=Server column_name=product 
| search product!=_* 
| untable product server version 
| rex field=product "(?&amp;lt;ProductName&amp;gt;.*)_(?&amp;lt;ProductVariant&amp;gt;.*)" 
| eval serverProd=server.":".ProductName 
| fields - server ProductName 
| xyseries serverProd ProductVariant version 
| rex field=serverProd "(?&amp;lt;server&amp;gt;.*):(?&amp;lt;ProductName&amp;gt;.*)" 
| fields - serverProd 
| table server ProductName Ver Latest 
| eval Latest=split(Latest,"|") 
| mvexpand Latest 
| rex field=Latest "(?&amp;lt;LatestMaj&amp;gt;\d+).(?&amp;lt;LatestMin&amp;gt;\d+)" 
| rex field=Ver "(?&amp;lt;VerMaj&amp;gt;\d+).(?&amp;lt;VerMin&amp;gt;\d+)" 
| where LatestMaj=VerMaj AND VerMin!=LatestMin 
| fields - LatestM* VerM* &lt;/LI-CODE&gt;&lt;P&gt;I added some additional test data.&amp;nbsp; The transpose, untable, xyseries combination converts your table into a list with 4 columns ... server, product, version and latest-version.&amp;nbsp; Now you can use straightforward evals and wheres to manipulate / filter.&amp;nbsp; You'll need to adapt the filter (penultimate line "where LatestMaj=VerMaj AND VerMin!=LatestMin") to deal with your versioning.&amp;nbsp; As per your previous response.&lt;/P&gt;&lt;P&gt;Bonus (perhaps unnecessary)...if you want to put the formatting back to resemble your original table format you can add the. following lines...&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval fnameVer=ProductName."_Ver",fnameLatest=ProductName."_Latest" 
| eval {fnameLatest}=Latest,{fnameVer}=Ver 
| fields - fname* Ver Latest ProductName 
| stats values(*) as * by server&lt;/LI-CODE&gt;&lt;P&gt;...which should leave you with a table in your original&amp;nbsp; format only showing entries with out-of-date software.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2021 13:29:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/540097#M8772</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2021-02-16T13:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/541820#M8803</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231498"&gt;@Cranie&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you get the results you wanted in the end?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Mar 2021 17:02:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/541820#M8803</guid>
      <dc:creator>tread_splunk</dc:creator>
      <dc:date>2021-03-01T17:02:45Z</dc:date>
    </item>
    <item>
      <title>Re: Field comparison with multi-value columns</title>
      <link>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/551195#M9071</link>
      <description>&lt;P&gt;Apologies for the late reply. I struggled to log on in work place. Yes, I managed to do what I have needed and implemented the same in a more complex query for my reports. Thanks all for the help and suggestions! Really appreciate the community help.&lt;/P&gt;</description>
      <pubDate>Tue, 11 May 2021 08:00:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Field-comparison-with-multi-value-columns/m-p/551195#M9071</guid>
      <dc:creator>Cranie</dc:creator>
      <dc:date>2021-05-11T08:00:36Z</dc:date>
    </item>
  </channel>
</rss>

