<?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 Are values() returned by Splunk in a search sorted alphabetically? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389303#M166673</link>
    <description>&lt;P&gt;I couldn't find any documentation except that values(), when used in transforming commands, performs dedup. But there's no official documentation saying that the result is returned or sorted alphabetically.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Nov 2018 03:17:34 GMT</pubDate>
    <dc:creator>morethanyell</dc:creator>
    <dc:date>2018-11-09T03:17:34Z</dc:date>
    <item>
      <title>Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389303#M166673</link>
      <description>&lt;P&gt;I couldn't find any documentation except that values(), when used in transforming commands, performs dedup. But there's no official documentation saying that the result is returned or sorted alphabetically.&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 03:17:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389303#M166673</guid>
      <dc:creator>morethanyell</dc:creator>
      <dc:date>2018-11-09T03:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389304#M166674</link>
      <description>&lt;P&gt;when used in transforming commands performs dedup.// &lt;BR /&gt;
Can you pls post your search query?!?!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 03:45:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389304#M166674</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-09T03:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389305#M166675</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=ourindex sourcetype=asourcetype
| stats values(Status) as Status by Category
| eval Status = mvjoin(Status, " ")
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Result:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Category   Status
Cat1           Blocked Completed In Progress
Cat 2          Completed Not Started
Cat 3          Blocked In Progress Not Started
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Nov 2018 03:50:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389305#M166675</guid>
      <dc:creator>morethanyell</dc:creator>
      <dc:date>2018-11-09T03:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389306#M166676</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=main 
 | stats values(sourcetype) as ST
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;STRONG&gt;updated well&lt;/STRONG&gt;, yes, i ran this one  and "yes, values() returns the result alphabetically"&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;when used in transforming commands "performs dedup"&lt;/CODE&gt;&lt;BR /&gt;
do you have any confusion regarding the dedup?!?!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 07:08:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389306#M166676</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-09T07:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389307#M166677</link>
      <description>&lt;P&gt;No confusion at all because I complete understand that values() performs a dedup unlike list() which does not. Thanks anyway.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 07:18:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389307#M166677</guid>
      <dc:creator>morethanyell</dc:creator>
      <dc:date>2018-11-09T07:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389308#M166678</link>
      <description>&lt;P&gt;ya, the list() will just list the values.. and for values(), the splunk creators liked alphabetical order it-seems. &lt;BR /&gt;
maybe, you can accept this as the answer, so that this question will be moved to answered posts. thanks. &lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 07:53:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389308#M166678</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-09T07:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389309#M166679</link>
      <description>&lt;P&gt;I can't accept this answer. But if you change your answer to "yes, values() returns the result alphabetically" then I will accept it as correct answer. I hope you understand my part. I don't want to accept an answer with "maybe, that is a good idea, i feel." Thank you very much.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 08:25:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389309#M166679</guid>
      <dc:creator>morethanyell</dc:creator>
      <dc:date>2018-11-09T08:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Are values() returned by Splunk in a search sorted alphabetically?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389310#M166680</link>
      <description>&lt;P&gt;haha, done!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 08:40:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Are-values-returned-by-Splunk-in-a-search-sorted-alphabetically/m-p/389310#M166680</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2018-11-09T08:40:05Z</dc:date>
    </item>
  </channel>
</rss>

