<?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 combine multiple rows into single row in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546475#M37559</link>
    <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I have one requirement.&lt;/P&gt;&lt;P&gt;Below is my query:&lt;/P&gt;&lt;P&gt;index=abc ns=ab ("NullPointerException" OR "IllegalStateException" OR "IllegalArgumentException" OR "RuntimeException" OR "NumberFormatException" OR "NoSuchMethodException" OR "ClassCastException" OR "ParseException" OR "InvocationTargetException" OR "OutOfMemoryError")| rex "message=(?&amp;lt;ExceptionMessage&amp;gt;[^\n]+)"|eval _time = strftime(_time,"%Y-%m-%d %H:%M:%S.%3N")|cluster showcount=t t=0.6|table app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns|dedup ExceptionMessage|rename app_name as APP_NAME, _time as Time, environment as Environment, pod_name as Pod_Name,cluster_count as Count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting multiple rows and column names are&amp;nbsp;app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want them to be in one row.&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the app_name should be in one row, all excepton messages should be in one row&lt;/P&gt;&lt;P&gt;Can soemone guide me on this.&lt;/P&gt;</description>
    <pubDate>Fri, 02 Apr 2021 06:14:53 GMT</pubDate>
    <dc:creator>aditsss</dc:creator>
    <dc:date>2021-04-02T06:14:53Z</dc:date>
    <item>
      <title>How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546475#M37559</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I have one requirement.&lt;/P&gt;&lt;P&gt;Below is my query:&lt;/P&gt;&lt;P&gt;index=abc ns=ab ("NullPointerException" OR "IllegalStateException" OR "IllegalArgumentException" OR "RuntimeException" OR "NumberFormatException" OR "NoSuchMethodException" OR "ClassCastException" OR "ParseException" OR "InvocationTargetException" OR "OutOfMemoryError")| rex "message=(?&amp;lt;ExceptionMessage&amp;gt;[^\n]+)"|eval _time = strftime(_time,"%Y-%m-%d %H:%M:%S.%3N")|cluster showcount=t t=0.6|table app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns|dedup ExceptionMessage|rename app_name as APP_NAME, _time as Time, environment as Environment, pod_name as Pod_Name,cluster_count as Count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am getting multiple rows and column names are&amp;nbsp;app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want them to be in one row.&amp;nbsp;&lt;/P&gt;&lt;P&gt;All the app_name should be in one row, all excepton messages should be in one row&lt;/P&gt;&lt;P&gt;Can soemone guide me on this.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 06:14:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546475#M37559</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2021-04-02T06:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546476#M37560</link>
      <description>&lt;P&gt;If you just want columns to be rows and rows to be columns, use transpose&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| transpose 0&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 02 Apr 2021 06:37:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546476#M37560</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-02T06:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546611#M37565</link>
      <description>&lt;P&gt;&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;I dont want columns to be rows and rows to be columns.&lt;/P&gt;&lt;P&gt;Currently my search results is coming like below:&lt;/P&gt;&lt;P&gt;App_Name&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ExceptionMessage&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&lt;/P&gt;&lt;P&gt;one&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;nullpointer&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 38&lt;/P&gt;&lt;P&gt;one3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; IllegalArgument&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/P&gt;&lt;P&gt;There are coming in different rows .&lt;/P&gt;&lt;P&gt;I want them to be in single row so that I can send them via Incident in a single row.&lt;/P&gt;&lt;P&gt;Can you guide me on this.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 11:23:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546611#M37565</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2021-04-04T11:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546621#M37566</link>
      <description>&lt;P&gt;Follow my answer&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Dashboards-Visualizations/Display-the-top-3-entries-of-a-table-from-one-panel-to-our-block/m-p/546507#M37562" target="_self"&gt;https://community.splunk.com/t5/Dashboards-Visualizations/Display-the-top-3-entries-of-a-table-from-one-panel-to-our-block/m-p/546507#M37562&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 14:28:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546621#M37566</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-04T14:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546626#M37567</link>
      <description>&lt;P&gt;&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;I don't have only one and two rows .&lt;/P&gt;&lt;P&gt;It could be 10 rows as well .&lt;/P&gt;&lt;P&gt;I want how can I combine them from my query:&lt;/P&gt;&lt;P&gt;My current query:&lt;/P&gt;&lt;P&gt;index=abc ns=ab ("NullPointerException" OR "IllegalStateException" OR "IllegalArgumentException" OR "RuntimeException" OR "NumberFormatException" OR "NoSuchMethodException" OR "ClassCastException" OR "ParseException" OR "InvocationTargetException" OR "OutOfMemoryError")| rex "message=(?&amp;lt;ExceptionMessage&amp;gt;[^\n]+)"|eval _time = strftime(_time,"%Y-%m-%d %H:%M:%S.%3N")|cluster showcount=t t=0.6|table app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns|dedup ExceptionMessage|rename app_name as APP_NAME, _time as Time, environment as Environment, pod_name as Pod_Name,cluster_count as Count&lt;/P&gt;&lt;P&gt;My Result&amp;nbsp;&lt;/P&gt;&lt;P&gt;APP_NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ExceptionMessage&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Env&lt;/P&gt;&lt;P&gt;aon1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; nullpointer&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; E1&lt;/P&gt;&lt;P&gt;buy2&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; IllegalArgument&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;23&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;E1&lt;/P&gt;&lt;P&gt;............................&lt;/P&gt;&lt;P&gt;And there&amp;nbsp; can be several rows as well.&lt;/P&gt;&lt;P&gt;I want like APP_NAME aon1 and buy2 should come in one row instead of two rows,&lt;/P&gt;&lt;P&gt;Can you guide me how to achieve this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 15:57:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546626#M37567</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2021-04-04T15:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546631#M37568</link>
      <description>&lt;P&gt;I am not clear whether you want all 10 rows rearranged into one row (which the solution I pointed at should do), or just the two rows you mentioned have their values combined leaving the other rows as they are.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 16:45:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546631#M37568</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-04T16:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546633#M37569</link>
      <description>&lt;P&gt;&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;I want like in this way:&lt;/P&gt;&lt;P&gt;APP_NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ExceptionMessage&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Env&lt;/P&gt;&lt;P&gt;aon1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; nullpointer&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; E1&lt;/P&gt;&lt;P&gt;buy2&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; IllegalArgument&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;23&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;E1&lt;/P&gt;&lt;P&gt;............................&lt;/P&gt;&lt;P&gt;Then both APP_NAME aon1 and buy2 should be in one row&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;similar way ExceptionMessage&amp;nbsp; nullpointer&amp;nbsp; &amp;nbsp;and&amp;nbsp;IllegalArgument&amp;nbsp; both should be in same row&lt;/P&gt;&lt;P&gt;similar for count both 1 and 23 should be in same row&lt;/P&gt;&lt;P&gt;And same&amp;nbsp; for Environment.&lt;/P&gt;&lt;P&gt;Is this correct:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;index=abc ns=ab ("NullPointerException" OR "IllegalStateException" OR "IllegalArgumentException" OR "RuntimeException" OR "NumberFormatException" OR "NoSuchMethodException" OR "ClassCastException" OR "ParseException" OR "InvocationTargetException" OR "OutOfMemoryError")| rex "message=(?&amp;lt;ExceptionMessage&amp;gt;[^\n]+)"|eval _time = strftime(_time,"%Y-%m-%d %H:%M:%S.%3N")|cluster showcount=t t=0.6|table app_name, ExceptionMessage,cluster_count,_time, environment, pod_name,ns|dedup ExceptionMessage|rename app_name as APP_NAME, _time as Time, environment as Environment, pod_name as Pod_Name,cluster_count as Count&lt;STRONG&gt;| stats values(*) as *&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 16:57:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546633#M37569</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2021-04-04T16:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546634#M37570</link>
      <description>&lt;P&gt;Yes, the stats will collect all the unique values for each column into a multi-value field for each column all in one row.&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 17:04:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546634#M37570</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-04T17:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546636#M37571</link>
      <description>&lt;P&gt;&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;This is fine But the problem I am facing is&amp;nbsp;&lt;/P&gt;&lt;P&gt;For below query:&lt;/P&gt;&lt;P&gt;APP_NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ExceptionMessage&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Env&lt;/P&gt;&lt;P&gt;aon1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; nullpointer&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; E1&lt;/P&gt;&lt;P&gt;buy2&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; IllegalArgument&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;162&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; &amp;nbsp; &amp;nbsp;E1&lt;/P&gt;&lt;P&gt;when I am combining this with&amp;nbsp;&lt;STRONG&gt;| stats values(*) as * in my search query&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;its combining like below:&lt;/P&gt;&lt;P&gt;APP_NAME&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ExceptionMessage&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Env&lt;/P&gt;&lt;P&gt;aon1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; nullpointer&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 162&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; E1&lt;/P&gt;&lt;P&gt;buy2&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; &amp;nbsp; &amp;nbsp; &amp;nbsp;IllegalArgument&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;E1&lt;/P&gt;&lt;P&gt;The counts are not coming proper 162 count is for&amp;nbsp;&amp;nbsp;&amp;nbsp;IllegalArgument not for null pointer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 17:14:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546636#M37571</guid>
      <dc:creator>aditsss</dc:creator>
      <dc:date>2021-04-04T17:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine multiple rows into single row</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546637#M37572</link>
      <description>&lt;P&gt;Stats values will give you all the unique values in multi-value fields in sorted order. If you want the order they are in in the pipeline, you should use stats list(*) as *&lt;/P&gt;</description>
      <pubDate>Sun, 04 Apr 2021 17:24:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-combine-multiple-rows-into-single-row/m-p/546637#M37572</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-04T17:24:05Z</dc:date>
    </item>
  </channel>
</rss>

