<?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: (Table) Add dynamically generated columns (from field values) onto pre-existing columns in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563484#M196314</link>
    <description>&lt;P&gt;thank you, we are so close!&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234432"&gt;@cmtri&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your solution solves the line issue however now each of the dynamic columns have 'values' at the front: E.g.&lt;BR /&gt;'values(SVP:A-1)'&lt;/P&gt;&lt;P&gt;. Is there a way to remove the brackets and the 'values' prefix, so it goes back to being 'SVP:A-1' and so on for all the dynamically created columns?&lt;/P&gt;</description>
    <pubDate>Mon, 16 Aug 2021 13:36:41 GMT</pubDate>
    <dc:creator>shakSplunk</dc:creator>
    <dc:date>2021-08-16T13:36:41Z</dc:date>
    <item>
      <title>(Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563458#M196294</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I'm trying to dynamically add columns to two fixed columns based on the environment value selected. For instance, this is the input data:&lt;/P&gt;&lt;TABLE width="366"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="91"&gt;Environment&lt;/TD&gt;&lt;TD width="75"&gt;Application&lt;/TD&gt;&lt;TD width="86"&gt;CatridgeType&lt;/TD&gt;&lt;TD width="62"&gt;Cartridge&lt;/TD&gt;&lt;TD width="52"&gt;Version&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DEV&lt;/TD&gt;&lt;TD&gt;A-1&lt;/TD&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;1.1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DEV&lt;/TD&gt;&lt;TD&gt;A-2&lt;/TD&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Beta&lt;/TD&gt;&lt;TD&gt;1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;UAT&lt;/TD&gt;&lt;TD&gt;A-1&lt;/TD&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SVP&lt;/TD&gt;&lt;TD&gt;A-1&lt;/TD&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;1.4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SVP&lt;/TD&gt;&lt;TD&gt;A-1&lt;/TD&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Sigma&lt;/TD&gt;&lt;TD&gt;1.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SVP&lt;/TD&gt;&lt;TD&gt;A-2&lt;/TD&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Beta&lt;/TD&gt;&lt;TD&gt;1.2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SVP&lt;/TD&gt;&lt;TD&gt;A-3&lt;/TD&gt;&lt;TD&gt;System&lt;/TD&gt;&lt;TD&gt;Gamma&lt;/TD&gt;&lt;TD&gt;1.5&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I would like to create a table such as the following:&amp;nbsp;&lt;/P&gt;&lt;TABLE width="314"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="91"&gt;CartridgeType&lt;/TD&gt;&lt;TD width="75"&gt;Cartridge&lt;/TD&gt;&lt;TD width="86"&gt;DEV:A-1&lt;/TD&gt;&lt;TD width="62"&gt;DEV:A-2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;1.1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Beta&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1.2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Some key things to note:&lt;/P&gt;&lt;P&gt;- The first two columns should stay constant, however depending on the environment value selected in the search (e.g. Environment="DEV"), the environment value should be combined with the 'Application' value to create another column, in which the values are the corresponding 'Version' value. The tricky party is making the fields after "Cartridge" dynamic, for instance, if Environment="SVP",&amp;nbsp; I would expect the following:&lt;/P&gt;&lt;TABLE width="366"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="91"&gt;CartridgeType&lt;/TD&gt;&lt;TD width="75"&gt;Cartridge&lt;/TD&gt;&lt;TD width="86"&gt;SVP:A-1&lt;/TD&gt;&lt;TD width="62"&gt;SVP:A-2&lt;/TD&gt;&lt;TD width="52"&gt;SVP:A-3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Alpha&lt;/TD&gt;&lt;TD&gt;1.4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User&lt;/TD&gt;&lt;TD&gt;Sigma&lt;/TD&gt;&lt;TD&gt;1.5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Beta&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1.2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;System&lt;/TD&gt;&lt;TD&gt;Gamma&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1.5&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this possible to do whilst making to only show the latest version value?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for any help!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 11:35:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563458#M196294</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T11:35:26Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563459#M196295</link>
      <description>&lt;P&gt;| eval {Environment}:{Application}='Version'&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 11:50:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563459#M196295</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T11:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563460#M196296</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234432"&gt;@cmtri&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thanks for your answer but I'm still a little confused. The following doesn't seem to be working?&lt;/P&gt;&lt;P&gt;index="main" sourcetype="data"&amp;nbsp;&lt;BR /&gt;| eval {Environment}:{Application}="Version"&lt;BR /&gt;| table CartridgeType Cartridge {Environment}:{Application}&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:01:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563460#M196296</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T12:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563465#M196300</link>
      <description>&lt;P&gt;Version should be surrounded in single-quotes (') rather than double-quotes (") to use the value of the Version field. You don't need these single-quotes, so you can remove them if you prefer. If you also table out and then eval the fields after they will automatically appear in the table, so the below should work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index="main sourcetype="data"&lt;/P&gt;&lt;P&gt;| table CartridgeType, Cartridge&lt;/P&gt;&lt;P&gt;| eval&amp;nbsp;&lt;SPAN&gt;{Environment}:{Application}='Version'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The second line is also valid like below (no quotes):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| eval&amp;nbsp;{Environment}:{Application}=Version&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:12:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563465#M196300</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T12:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563466#M196301</link>
      <description>&lt;P&gt;The table is only showing the&amp;nbsp;&lt;SPAN&gt;CartridgeType, Cartridge fields however isn't showing the dynamic fields after it.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:20:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563466#M196301</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T12:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563467#M196302</link>
      <description>&lt;P&gt;Sorry, you need to bring the two fields you're using into the table, then drop them later to do it like that!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can then use the fields command to remove them from the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index="main sourcetype="data"&lt;/P&gt;&lt;P&gt;| table CartridgeType, Cartridge, Environment, Application&lt;/P&gt;&lt;P&gt;| eval&amp;nbsp;&lt;SPAN&gt;{Environment}:{Application}=Version&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;| fields - Environment, Application&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:24:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563467#M196302</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T12:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563468#M196303</link>
      <description>&lt;P&gt;Still is showing only&amp;nbsp;&lt;SPAN&gt;CartridgeType and Cartridge fields.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:30:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563468#M196303</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T12:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563470#M196305</link>
      <description>&lt;P&gt;You can try the below to see a full search:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| makeresults 1&lt;BR /&gt;| eval CartridgeType="User"&lt;BR /&gt;| eval Cartridge="Alpha"&lt;BR /&gt;| eval Environment="DEV"&lt;BR /&gt;| eval Application="A-1"&lt;BR /&gt;| eval Version="1.1"&lt;BR /&gt;| table Environment, Application, CartridgeType, Cartridge, Version&lt;BR /&gt;| eval {Environment}:{Application}=Version&lt;BR /&gt;| fields - Environment, Application, Version&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This should generate a table like below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;CartridgeType&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Cartridge&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;DEV:A-1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%"&gt;User&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;Alpha&lt;/TD&gt;&lt;TD width="33.333333333333336%"&gt;1.1&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:37:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563470#M196305</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T12:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563471#M196306</link>
      <description>&lt;P&gt;This seems to work! Seems like the issue was not including version in the table clause.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 12:40:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563471#M196306</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T12:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563475#M196308</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234432"&gt;@cmtri&lt;/a&gt;&amp;nbsp;Thought it was working, but there is slightly one more issue.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;This is what I entered,&amp;nbsp;&lt;/P&gt;&lt;P&gt;| makeresults | eval _raw="Environment,Application,CartridgeType,Cartridge,Version&lt;BR /&gt;SVP,A-1,User,Alpha,1.4&lt;BR /&gt;SVP,A-1,User,Sigma,1.5&lt;BR /&gt;SVP,A-2,Product,Beta,1.2&lt;BR /&gt;SVP,A-3,System,Gamma,1.5&lt;BR /&gt;SVP,A-2,User,Alpha,1.5" | multikv forceheader=1&lt;BR /&gt;| table Environment, Application, CartridgeType, Cartridge, Version&lt;BR /&gt;| eval {Environment}:{Application}=Version&lt;BR /&gt;| fields - Environment, Application, Version&lt;/P&gt;&lt;P&gt;Line 1 and 5 of the resulting table should be combined together - meaning that since it has the same cartridgetype and cartridge, it should be on one line.&amp;nbsp; However, the result is producing it as seperate rows. Also, thanks for your help so far!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:23:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563475#M196308</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T13:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563482#M196312</link>
      <description>&lt;P&gt;This stats values command should do it!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| makeresults&lt;BR /&gt;| eval _raw="Environment,Application,CartridgeType,Cartridge,Version&lt;BR /&gt;SVP,A-1,User,Alpha,1.4&lt;BR /&gt;SVP,A-1,User,Sigma,1.5&lt;BR /&gt;SVP,A-2,Product,Beta,1.2&lt;BR /&gt;SVP,A-3,System,Gamma,1.5&lt;BR /&gt;SVP,A-2,User,Alpha,1.5"&lt;BR /&gt;| multikv forceheader=1&lt;BR /&gt;| table Environment, Application, CartridgeType, Cartridge, Version&lt;BR /&gt;| eval {Environment}:{Application}=Version&lt;BR /&gt;| fields - Environment, Application, Version&lt;BR /&gt;| stats values by CartridgeType, Cartridge&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:32:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563482#M196312</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T13:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563483#M196313</link>
      <description>&lt;P&gt;And use this to make the columns the original names rather than the values(abc) result:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;| rename values(*) as *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks! If this solves it please mark as answered.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:36:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563483#M196313</guid>
      <dc:creator>cmtri</dc:creator>
      <dc:date>2021-08-16T13:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563484#M196314</link>
      <description>&lt;P&gt;thank you, we are so close!&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/234432"&gt;@cmtri&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your solution solves the line issue however now each of the dynamic columns have 'values' at the front: E.g.&lt;BR /&gt;'values(SVP:A-1)'&lt;/P&gt;&lt;P&gt;. Is there a way to remove the brackets and the 'values' prefix, so it goes back to being 'SVP:A-1' and so on for all the dynamically created columns?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:36:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563484#M196314</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T13:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: (Table) Add dynamically generated columns (from field values) onto pre-existing columns</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563485#M196315</link>
      <description>&lt;P&gt;too fast, cheers!&lt;/P&gt;</description>
      <pubDate>Mon, 16 Aug 2021 13:37:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Table-Add-dynamically-generated-columns-from-field-values-onto/m-p/563485#M196315</guid>
      <dc:creator>shakSplunk</dc:creator>
      <dc:date>2021-08-16T13:37:30Z</dc:date>
    </item>
  </channel>
</rss>

