<?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 How to create a table using dedup to show one entry for each application name and create a multivalue field? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221980#M65264</link>
    <description>&lt;P&gt;I have events that include an &lt;STRONG&gt;application name&lt;/STRONG&gt; field and a &lt;STRONG&gt;uservalue&lt;/STRONG&gt; field. &lt;/P&gt;

&lt;P&gt;When i table the data by &lt;STRONG&gt;application&lt;/STRONG&gt; and &lt;STRONG&gt;uservalue&lt;/STRONG&gt;, i see each event individually thus meaning i get multiple pages of events with the same application name.&lt;/P&gt;

&lt;P&gt;How can I have one entry for each &lt;STRONG&gt;application name&lt;/STRONG&gt; and a multivalue field showing the &lt;STRONG&gt;uservalues&lt;/STRONG&gt;?&lt;/P&gt;

&lt;P&gt;EG: go from&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;application uservalue
app1            123456
app1            234567
app1            345678
app2            987654
app2            876543
app2            765432
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and get :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;application uservalue
app1          123456
              234567
              345678
app2          987654
              876543
              765432
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's probably something really easy, but I've stepped away from Splunk for awhile and forget even the easy stuff. &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2016 17:08:48 GMT</pubDate>
    <dc:creator>stuart338</dc:creator>
    <dc:date>2016-10-04T17:08:48Z</dc:date>
    <item>
      <title>How to create a table using dedup to show one entry for each application name and create a multivalue field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221980#M65264</link>
      <description>&lt;P&gt;I have events that include an &lt;STRONG&gt;application name&lt;/STRONG&gt; field and a &lt;STRONG&gt;uservalue&lt;/STRONG&gt; field. &lt;/P&gt;

&lt;P&gt;When i table the data by &lt;STRONG&gt;application&lt;/STRONG&gt; and &lt;STRONG&gt;uservalue&lt;/STRONG&gt;, i see each event individually thus meaning i get multiple pages of events with the same application name.&lt;/P&gt;

&lt;P&gt;How can I have one entry for each &lt;STRONG&gt;application name&lt;/STRONG&gt; and a multivalue field showing the &lt;STRONG&gt;uservalues&lt;/STRONG&gt;?&lt;/P&gt;

&lt;P&gt;EG: go from&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;application uservalue
app1            123456
app1            234567
app1            345678
app2            987654
app2            876543
app2            765432
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and get :&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;application uservalue
app1          123456
              234567
              345678
app2          987654
              876543
              765432
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It's probably something really easy, but I've stepped away from Splunk for awhile and forget even the easy stuff. &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 17:08:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221980#M65264</guid>
      <dc:creator>stuart338</dc:creator>
      <dc:date>2016-10-04T17:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table using dedup to show one entry for each application name and create a multivalue field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221981#M65265</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;source="Workbook1.csv" sourcetype="csv" | stats list(uservalue) as UserValue by application
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/1936iA716096EA58AC65C/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 18:00:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221981#M65265</guid>
      <dc:creator>dmaislin_splunk</dc:creator>
      <dc:date>2016-10-04T18:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a table using dedup to show one entry for each application name and create a multivalue field?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221982#M65266</link>
      <description>&lt;P&gt;See, i knew it was easy.. Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2016 21:25:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-create-a-table-using-dedup-to-show-one-entry-for-each/m-p/221982#M65266</guid>
      <dc:creator>stuart338</dc:creator>
      <dc:date>2016-10-04T21:25:03Z</dc:date>
    </item>
  </channel>
</rss>

