<?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 to transpose a table? (without using Transpose command) in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518804#M146020</link>
    <description>&lt;P&gt;I assumed vehicle, grocery and tax are not the field names but the values of a field. Let's say the name of the field is "object". The values 120, 23, 5, 45 are values of a field named "cost".&lt;/P&gt;&lt;P&gt;The search should be something like this&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| stats count as cost by object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| untable object cost waarde&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| xyseries cost object waarde&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Sep 2020 05:29:00 GMT</pubDate>
    <dc:creator>rrovers</dc:creator>
    <dc:date>2020-09-10T05:29:00Z</dc:date>
    <item>
      <title>How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518699#M145950</link>
      <description>&lt;P&gt;My Table looks like this&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;VF_Price&amp;nbsp; &amp;nbsp;Huyndai_Price&amp;nbsp; Jaguar_Price&lt;BR /&gt;345&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;412&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;542&lt;BR /&gt;&lt;BR /&gt;I want it to look like the following&lt;BR /&gt;&lt;BR /&gt;VF_Price&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;345&lt;BR /&gt;Huyndai_Price&amp;nbsp; &amp;nbsp;412&lt;BR /&gt;Jaguar_Price&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;542&lt;BR /&gt;&lt;BR /&gt;I need to transpose the table without using transpose command. I cannot use transpose command, 'cos I am using some invisible _&amp;lt;fields&amp;gt; that I am passing to my alert, those invisible field becomes visible and show in my transposed table, if I use 'transpose' command. Hence I am trying to figure out , how can I achieve this without using 'transpose'.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 13:31:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518699#M145950</guid>
      <dc:creator>zacksoft</dc:creator>
      <dc:date>2020-09-09T13:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518704#M145951</link>
      <description>&lt;P&gt;without transpose command also, the other invisible fields will be affected&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 13:44:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518704#M145951</guid>
      <dc:creator>thambisetty</dc:creator>
      <dc:date>2020-09-09T13:44:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518709#M145953</link>
      <description>&lt;P&gt;maybe when you use untable and xyseries you can get what you want.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;index=_internal&lt;BR /&gt;| stats count as aantal by sourcetype&lt;BR /&gt;| untable sourcetype aantal waarde&lt;BR /&gt;| xyseries aantal sourcetype waarde&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 14:21:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518709#M145953</guid>
      <dc:creator>rrovers</dc:creator>
      <dc:date>2020-09-09T14:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518715#M145956</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/64273"&gt;@rrovers&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Would this work if I have 4 fields .&lt;BR /&gt;example :-&amp;nbsp;&lt;BR /&gt;Vehicle&amp;nbsp; &amp;nbsp;Grocery&amp;nbsp; &amp;nbsp; Tax&amp;nbsp; &amp;nbsp; &amp;nbsp; Education&lt;BR /&gt;120&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;23&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;45&lt;BR /&gt;&lt;BR /&gt;and to make it&lt;BR /&gt;Vehicle&amp;nbsp; 120&lt;BR /&gt;Grocery&amp;nbsp; 23&lt;BR /&gt;Tax&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;BR /&gt;Education 45&lt;BR /&gt;&lt;BR /&gt;| untable Vehicle Grocery Tax Education&amp;nbsp;&lt;BR /&gt;| XYseries Vehice Grocery TAx Education&lt;BR /&gt;&lt;BR /&gt;like this ?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 14:50:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518715#M145956</guid>
      <dc:creator>zacksoft</dc:creator>
      <dc:date>2020-09-09T14:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518728#M145961</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/65483"&gt;@zacksoft&lt;/a&gt;&amp;nbsp;for the community to assist you better please add more details about your use case. How are you creating the hidden fields for Alert? Can you not create them after transpose?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 16:10:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518728#M145961</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-09-09T16:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518729#M145962</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/65483"&gt;@zacksoft&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;this seems to work:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults 
| eval Vehicle=120, Grocery=23, Tax=5, Education=45
| untable foo Vehicle Grocery
| fields - foo
| rename Vehicle as Category, Tax as count&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;While I was playing around with the data, due to a typo I added a field in the untable command that does not exist, that's why I have &lt;EM&gt;foo&lt;/EM&gt; in it now. I don't fullly understand why, but it gives the result you asked for.&lt;BR /&gt;&lt;BR /&gt;But I am not sure about your _fields that you mentioned. I guess they won't be available, as with the transpose command.&lt;BR /&gt;&lt;BR /&gt;BR&lt;BR /&gt;Ralph&lt;/P&gt;</description>
      <pubDate>Wed, 09 Sep 2020 16:13:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518729#M145962</guid>
      <dc:creator>rnowitzki</dc:creator>
      <dc:date>2020-09-09T16:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to transpose a table? (without using Transpose command)</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518804#M146020</link>
      <description>&lt;P&gt;I assumed vehicle, grocery and tax are not the field names but the values of a field. Let's say the name of the field is "object". The values 120, 23, 5, 45 are values of a field named "cost".&lt;/P&gt;&lt;P&gt;The search should be something like this&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| stats count as cost by object&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| untable object cost waarde&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;| xyseries cost object waarde&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2020 05:29:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-transpose-a-table-without-using-Transpose-command/m-p/518804#M146020</guid>
      <dc:creator>rrovers</dc:creator>
      <dc:date>2020-09-10T05:29:00Z</dc:date>
    </item>
  </channel>
</rss>

