<?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 group one field's values by another field? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266499#M80103</link>
    <description>&lt;P&gt;And you want o list all the &lt;CODE&gt;c*&lt;/CODE&gt; fields for which a measInfoId has values?? &lt;/P&gt;</description>
    <pubDate>Thu, 04 Feb 2016 22:53:28 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2016-02-04T22:53:28Z</dc:date>
    <item>
      <title>How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266488#M80092</link>
      <description>&lt;P&gt;I have a search &lt;CODE&gt;...|table measInfoId&lt;/CODE&gt; that gives output in 1 column with the values&lt;BR /&gt;
e.g.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;measInfoId
1x
2x
3x
...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I have the same search, but slightly different different &lt;CODE&gt;...| table c*&lt;/CODE&gt; gives output with the values in many columns&lt;BR /&gt;
e.g.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;c1x c2x c3x ...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;What I am trying to to is get something like this (group the c1x's by the 1x's):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;measInfoId  c*
 1x         c1x
 2x         c2x
            c3x
 3x         c4x
            c5x
...
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I think this has something to do with the way the data is imported (the &lt;CODE&gt;c&lt;/CODE&gt; is prefixed in front of the values &lt;CODE&gt;c1x&lt;/CODE&gt;), which is why I am getting the difference. But given these conditions, can I achieve what I want? I may have to add more details to get this question answered as I try and solve this answer.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 23:12:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266488#M80092</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-03T23:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266489#M80093</link>
      <description>&lt;P&gt;if I follow what your doing, why not use &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/CommonStatsFunctions"&gt;list&lt;/A&gt; with the stats or chart command instead of table?&lt;BR /&gt;
you can then do something like &lt;BR /&gt;
your search | stats list(measInfoId) by c*&lt;BR /&gt;
or&lt;BR /&gt;
your search | chart list(measInfoId) by c*&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2016 23:43:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266489#M80093</guid>
      <dc:creator>mtranchita</dc:creator>
      <dc:date>2016-02-03T23:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266490#M80094</link>
      <description>&lt;P&gt;tks but that presents the same problem &lt;BR /&gt;
&lt;CODE&gt;... | stats list(measInfoId)&lt;/CODE&gt; gives output in 1 column with the values&lt;BR /&gt;
&lt;CODE&gt;... | stats list(c*)&lt;/CODE&gt; gives output with the values in many columns headers (e.g. list(c1x) list(c2x)...)&lt;/P&gt;

&lt;P&gt;the problem I think is to do with the c* fields, they should show up as the &lt;CODE&gt;measInfoId&lt;/CODE&gt; does but they don't.&lt;/P&gt;

&lt;P&gt;I have tried transpose which which puts the kpi values(c*) in the left most column but I get other columns that I don't really want.&lt;BR /&gt;
&lt;CODE&gt;...| table c* | transpose | rename column as kpis&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;then I try to see the values in &lt;CODE&gt;measInfoId&lt;/CODE&gt; after doing the transpose but this says &lt;CODE&gt;no results found&lt;/CODE&gt;&lt;BR /&gt;
&lt;CODE&gt;| table c* | transpose | rename column as kpis | table measInfoId&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:39:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266490#M80094</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2020-09-29T08:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266491#M80095</link>
      <description>&lt;P&gt;Can you explain or give some more information about your search? &lt;/P&gt;

&lt;P&gt;I've done something like this but I resolved it using this search&lt;/P&gt;

&lt;P&gt;your search | chart list(measInfoId) by c*&lt;/P&gt;

&lt;P&gt;But if doesn't work for you, I don't understand the relation between these two fields or the real search you want to do.&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 09:06:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266491#M80095</guid>
      <dc:creator>marina_rovira</dc:creator>
      <dc:date>2016-02-04T09:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266492#M80096</link>
      <description>&lt;P&gt;I will try to explain by example&lt;BR /&gt;
If i do &lt;CODE&gt;...| chart list(measInfoId) by c*&lt;/CODE&gt; this says &lt;CODE&gt;no results found&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;If I do &lt;CODE&gt;...| chart list(measInfoId) by c1907466990&lt;/CODE&gt;,just looking at 1 specific c* value, I get the below: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;c1907466990 list(measInfoId)
1   0           1907425342
                1907425342
                1907425342
                1907425342
                1907425342
2   1           1907425342
                1907425342
                1907425342
                1907425342
    ...
98  104         1907425342
99  105         1907425342
                1907425342
                        1907425342
100 106         1907425342
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If i do &lt;CODE&gt;...| chart list(measInfoId) by measObj*&lt;/CODE&gt; this says &lt;CODE&gt;no results found&lt;/CODE&gt;, the wild card does not seem to work, it seems I have to specify the whole name. UI will see if this might be a rights issue.&lt;/P&gt;

&lt;P&gt;If I do &lt;CODE&gt;...| chart list(measInfoId) by measObjLdn&lt;/CODE&gt;,specify the whole &lt;CODE&gt;measObjLdn&lt;/CODE&gt; name, I get the below, which is what i am originally trying to achieve: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    measObjLdn  list(measInfoId)
1   object1     1907425301
                1907425280
                1907425335
                1907425301
                1907425280
                1907425335
                1907425301
2   object2     1907443286
                1907443286
                1907443286
                1907443286
                1907443286
...
100 object100   1907425341
                1907425341
                1907425341
                1907425341
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 19:26:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266492#M80096</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-04T19:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266493#M80097</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your base search  | table measInfoId c*  | untable meansInfold c_meansInfold temp | fields - temp
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 19:44:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266493#M80097</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-04T19:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266494#M80098</link>
      <description>&lt;P&gt;that gives the following: &lt;CODE&gt;meansInfold&lt;/CODE&gt; is an empty column, and &lt;CODE&gt;measInfoId&lt;/CODE&gt; appears randomly in this column &lt;CODE&gt;c_meansInfold&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    meansInfold c_meansInfold
1       c1907473350
2       c1907473351
3       c1907473352
4       measInfoId
5       c1907466983
6       c1907466984
...
93      c1907466996
94      measInfoId
95      c1907466983
96      c1907466984
97      c1907466985
98      c1907466986
99      c1907466987
100     c1907466988
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 20:42:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266494#M80098</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-04T20:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266495#M80099</link>
      <description>&lt;P&gt;Ok.. can you provide the full search for getting both the result sets , means one with "...|table measInfoId" and other with "...| table c*".&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 20:50:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266495#M80099</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-04T20:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266496#M80100</link>
      <description>&lt;P&gt;not sure it will make a difference   &lt;/P&gt;

&lt;P&gt;1 &lt;CODE&gt;index=core host="A" measObjLdn=* measInfoId=* duration=*  userLabel=* sourcetype=M2 | table measInfoId&lt;/CODE&gt;   &lt;/P&gt;

&lt;P&gt;2 &lt;CODE&gt;index=core host="A" measObjLdn=* measInfoId=* duration=*  userLabel=* sourcetype=M2 | table c*&lt;/CODE&gt;&lt;BR /&gt;
and as I said above the format of the outputs is different, 1 has 1 column and 2 has many columns&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 21:42:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266496#M80100</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-04T21:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266497#M80101</link>
      <description>&lt;P&gt;So, now does your data looks like this Or output of below search looks like this??&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=core host="A" measObjLdn=* measInfoId=* duration=* userLabel=* sourcetype=M2 | table measInfoId c*


  measInfoId    c1x c2x c3x     c4x c5x c6x     c7x c8x
    1x           Y    Y                     
    2x                          Y     Y     Y           
    3x                                               Y       Y      Y
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:05:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266497#M80101</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-04T22:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266498#M80102</link>
      <description>&lt;P&gt;ye &lt;CODE&gt;...| table measInfoId c*&lt;/CODE&gt; looks like you say. but there is not a &lt;CODE&gt;Y&lt;/CODE&gt; value for every &lt;CODE&gt;c*&lt;/CODE&gt; just a few and they concentrated close together, but that could just be the data.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:41:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266498#M80102</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-04T22:41:21Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266499#M80103</link>
      <description>&lt;P&gt;And you want o list all the &lt;CODE&gt;c*&lt;/CODE&gt; fields for which a measInfoId has values?? &lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 22:53:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266499#M80103</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-04T22:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266500#M80104</link>
      <description>&lt;P&gt;yes group all c* values by measInfoId  &lt;/P&gt;</description>
      <pubDate>Thu, 04 Feb 2016 23:34:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266500#M80104</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-04T23:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266501#M80105</link>
      <description>&lt;P&gt;Hi ,HattrickNZ&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                   May be you can solve it by using transaction.....what transaction will do is group  events based on fields specified .....try this query.....from u r information u meansInfold has to be grouped.     meansInfold :1907443286
                                                                                                                                    1907443286
                                                                                                                                     1907443286.........
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;index = &lt;EM&gt;|transaction meansInfold    maxspan=30s maxpause=5s| table meansInfold    ,c&lt;/EM&gt;|eventstats list(meansInfold    ) by c*|fields - meansInfold........&lt;/STRONG&gt;  &lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 05:42:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266501#M80105</guid>
      <dc:creator>rakeshh123</dc:creator>
      <dc:date>2016-02-08T05:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266502#M80106</link>
      <description>&lt;P&gt;tks but &lt;CODE&gt;|transaction meansInfold maxspan=30s maxpause=5s&lt;/CODE&gt; this returned nothing.&lt;/P&gt;

&lt;P&gt;and &lt;CODE&gt;table meansInfold ,c&lt;/CODE&gt; does not work as the field name is c followed by some numbers (c* i.e. c1x c1y c 1z ...etc) &lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 20:26:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266502#M80106</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-10T20:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266503#M80107</link>
      <description>&lt;P&gt;Hi , HattrickNZ&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;                   maxspan=30 means .....The first and last events in the transaction should be no more than thirty seconds apart....  see u r events and change it accordingly, maxpause=5s .... each event should not be longer than five seconds apart....Leave them  if it is irrevalant to u r data ......
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;table meansInfold ,c*---sorry i forgot *&lt;/P&gt;

&lt;P&gt;what i see from ur answers  is  u want meansfold unique .......and you want to list c*  by meansfold........try this query&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;index = |transaction meansInfold | table meansInfold ,c*|eventstats list(c* ) by meansfold|table meansfold,list(c*)....&lt;/STRONG&gt;&lt;BR /&gt;
remove any irrevvalent fields using   fields - field uwant to remove&lt;BR /&gt;
                                      see if its working...........reply me if u have any problem .....&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:47:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266503#M80107</guid>
      <dc:creator>rakeshh123</dc:creator>
      <dc:date>2020-09-29T08:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266504#M80108</link>
      <description>&lt;P&gt;tks, don't think transaction is required for my data in this case, but stiil have no joy with what you mention.&lt;/P&gt;

&lt;P&gt;1&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;...|  table meansInfold ,c* |&lt;/CODE&gt; gives me the following output in the stats tab. There is some values in some of the cells but they are generally blank: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;meansInfold c1907466416 c1907466417 c1907466418 c1907466419 .... c1907480795    c1907480796
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2 &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;|  table meansInfold ,c* | eventstats list(c* ) by meansfold |&lt;/CODE&gt; gives me: &lt;/P&gt;

&lt;P&gt;the same as 1 above. &lt;/P&gt;

&lt;P&gt;3&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;|  table meansInfold ,c* | eventstats list(c* ) by meansfold | table meansfold,list(c*)&lt;/CODE&gt; gives me:&lt;/P&gt;

&lt;P&gt;No results found.&lt;/P&gt;</description>
      <pubDate>Sun, 14 Feb 2016 21:13:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266504#M80108</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-14T21:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266505#M80109</link>
      <description>&lt;P&gt;hi HattrickNZ,&lt;BR /&gt;
                      try this query.........&lt;BR /&gt;
                    index=a sourcetype=b  | eval output = toString(c1x) + ";" + toString(c2x) + ";" + toString(c3x) + ";" + toString(c4x).... |makemv delim=";"output |mvexpand output|table output ,meansfold......&lt;BR /&gt;
                                                                                           reply me if its working ........&lt;/P&gt;</description>
      <pubDate>Mon, 15 Feb 2016 09:31:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266505#M80109</guid>
      <dc:creator>rakeshh123</dc:creator>
      <dc:date>2016-02-15T09:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266506#M80110</link>
      <description>&lt;P&gt;&lt;CODE&gt;... | eval output = toString(c1907466966) + ";" + toString(c1907466967) + ";" + toString(c1907466968) + ";" + toString(c1907466969) | makemv delim";" | mvexpand output| table output ,meansfold&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;this gives me the following (meansfold column is empty, output column is like the values of &lt;CODE&gt;c*&lt;/CODE&gt;)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;output  meansfold
Null;Null;Null;Null  
...
0;0;0;0  
0;0;0;0  
0;0;0;0  
57;8.032;66.279;13   
...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Feb 2016 19:59:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266506#M80110</guid>
      <dc:creator>HattrickNZ</dc:creator>
      <dc:date>2016-02-15T19:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I group one field's values by another field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266507#M80111</link>
      <description>&lt;P&gt;hi HattrickNZ,&lt;BR /&gt;
                     please see my query correctly ,,,it is  | &lt;STRONG&gt;eval output = makemv delim=";"output&lt;/STRONG&gt; |mvexpand output|table output ,meansfold...... ......&lt;BR /&gt;
                                                                                 also if you are not getting meansfold  you can write a separate query for meansfold and join both the queries.......by using join  ..... &lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 04:24:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-group-one-field-s-values-by-another-field/m-p/266507#M80111</guid>
      <dc:creator>rakeshh123</dc:creator>
      <dc:date>2016-02-16T04:24:28Z</dc:date>
    </item>
  </channel>
</rss>

