<?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 Is it possible to create an html unorder (bullet) list for each row of a table output? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-an-html-unorder-bullet-list-for-each/m-p/745566#M241489</link>
    <description>&lt;P&gt;Id like to create table of results, and convert each row into an unordered bullet list using html.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Such as:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;| table result&amp;nbsp; &amp;nbsp;(which has n number of results)&amp;nbsp;&lt;BR /&gt;Then in the output, i want to show each in an unordered bullet list.&lt;BR /&gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;ul&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.1&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.2&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.3&lt;BR /&gt;etc...&amp;nbsp;&lt;BR /&gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Possible?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 06 May 2025 16:01:56 GMT</pubDate>
    <dc:creator>timgren</dc:creator>
    <dc:date>2025-05-06T16:01:56Z</dc:date>
    <item>
      <title>Is it possible to create an html unorder (bullet) list for each row of a table output?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-an-html-unorder-bullet-list-for-each/m-p/745566#M241489</link>
      <description>&lt;P&gt;Id like to create table of results, and convert each row into an unordered bullet list using html.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Such as:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;| table result&amp;nbsp; &amp;nbsp;(which has n number of results)&amp;nbsp;&lt;BR /&gt;Then in the output, i want to show each in an unordered bullet list.&lt;BR /&gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;ul&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.1&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.2&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt; row.result.3&lt;BR /&gt;etc...&amp;nbsp;&lt;BR /&gt;&amp;lt;/ul&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Possible?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 16:01:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-an-html-unorder-bullet-list-for-each/m-p/745566#M241489</guid>
      <dc:creator>timgren</dc:creator>
      <dc:date>2025-05-06T16:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create an html unorder (bullet) list for each row of a table output?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-an-html-unorder-bullet-list-for-each/m-p/745570#M241490</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/227798"&gt;@timgren&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Something like this?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval row="&amp;lt;li&amp;gt;".result."&amp;lt;/li&amp;gt;"
| stats values(row) as html_list 
| eval html_list = "&amp;lt;ul&amp;gt;".mvjoin(html_list, "")."&amp;lt;/ul&amp;gt;" 
| table html_list&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="livehybrid_0-1746547974884.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/38869iBD25F73A5DF10025/image-size/medium?v=v2&amp;amp;px=400" role="button" title="livehybrid_0-1746547974884.png" alt="livehybrid_0-1746547974884.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Full example&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults count=3 
| streamstats count
| eval result = "result".count 
| table result
| eval row="&amp;lt;li&amp;gt;".result."&amp;lt;/li&amp;gt;"
| stats values(row) as html_list 
| eval html_list = "&amp;lt;ul&amp;gt;".mvjoin(html_list, "")."&amp;lt;/ul&amp;gt;" 
| table html_list&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 16:19:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-it-possible-to-create-an-html-unorder-bullet-list-for-each/m-p/745570#M241490</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-06T16:19:47Z</dc:date>
    </item>
  </channel>
</rss>

