<?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: Transpose Group of Columns in Rows in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607120#M8951</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for this perfect&amp;nbsp; solution !!&lt;/P&gt;</description>
    <pubDate>Wed, 27 Jul 2022 06:14:23 GMT</pubDate>
    <dc:creator>mxh7777</dc:creator>
    <dc:date>2022-07-27T06:14:23Z</dc:date>
    <item>
      <title>How to Transpose Group of Columns in Rows?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607041#M8949</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I'd like to transpose a table results by grouping by columns.&lt;/P&gt;
&lt;P&gt;Here is my table&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;time1&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;event1&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;time2&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;event2&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;time3&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;event3&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="16.666666666666668%"&gt;01/01/2022&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;titi&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;02/01/2022&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;toto&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;04/01/2022&lt;/TD&gt;
&lt;TD width="16.666666666666668%"&gt;tata&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd like to transpose this structure in this way&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%" height="25px"&gt;time&lt;/TD&gt;
&lt;TD width="50%" height="25px"&gt;content&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="25px"&gt;01/01/2022&lt;/TD&gt;
&lt;TD width="50%" height="25px"&gt;titi&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="25px"&gt;02/01/2022&lt;/TD&gt;
&lt;TD width="50%" height="25px"&gt;toto&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%" height="25px"&gt;04/01/2022&lt;/TD&gt;
&lt;TD width="50%" height="25px"&gt;tata&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I didn't find a way to solve this&lt;/P&gt;
&lt;P&gt;Thans in advance&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2022 14:44:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607041#M8949</guid>
      <dc:creator>mxh7777</dc:creator>
      <dc:date>2022-07-26T14:44:56Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose Group of Columns in Rows</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607049#M8950</link>
      <description>&lt;P&gt;One way might be something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval row=mvrange(1,4)
| mvexpand row
| foreach event*
    [| eval content=if(row=&amp;lt;&amp;lt;MATCHSEG1&amp;gt;&amp;gt;,&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,content)]
| foreach time*
    [| eval time=if(row=&amp;lt;&amp;lt;MATCHSEG1&amp;gt;&amp;gt;,&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;,time)]
| table time content&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 26 Jul 2022 14:42:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607049#M8950</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2022-07-26T14:42:46Z</dc:date>
    </item>
    <item>
      <title>Re: Transpose Group of Columns in Rows</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607120#M8951</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for this perfect&amp;nbsp; solution !!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2022 06:14:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/How-to-Transpose-Group-of-Columns-in-Rows/m-p/607120#M8951</guid>
      <dc:creator>mxh7777</dc:creator>
      <dc:date>2022-07-27T06:14:23Z</dc:date>
    </item>
  </channel>
</rss>

