<?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: Color a row based on a column value in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539318#M36909</link>
    <description>&lt;P&gt;Here is the screenshot&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Feb 2021 16:20:38 GMT</pubDate>
    <dc:creator>sweety1309</dc:creator>
    <dc:date>2021-02-10T16:20:38Z</dc:date>
    <item>
      <title>Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539156#M36874</link>
      <description>&lt;P&gt;Hey I have the query-&lt;/P&gt;&lt;P&gt;index="classroom-students" profile.emailAddress="something" earliest=0 latest=now&lt;BR /&gt;| join type=outer courseId&lt;BR /&gt;[search index="courses" courseState="ACTIVE" ]&lt;BR /&gt;| join type=outer courseId max=0&lt;BR /&gt;[search index="course-work" | rename id as courseWorkId ]&lt;BR /&gt;| join type=outer userId, courseId, courseWorkId&lt;BR /&gt;[search index="students-submission" | dedup userId, courseId, courseWorkId sortby -updateTime]&lt;BR /&gt;| rename profile.name.fullName as StudentName&lt;BR /&gt;| rename name as Classroom&lt;BR /&gt;| rename submissionHistory{}.gradeHistory.pointsEarned&lt;BR /&gt;as pointsEarned&lt;BR /&gt;| table StudentName, courseId, courseWorkId, userId, Classroom, descriptionHeading, title, workType, maxPoints, pointsEarned, state, late.&lt;/P&gt;&lt;P&gt;In late column,i get "true" in some rows.I want to color those rows where I am getting "true" in late column.Like if u look at the imagfe,I want to color the whole second row.&lt;/P&gt;&lt;P&gt;Any help would be highlt appreciated.Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 12:20:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539156#M36874</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-09T12:20:21Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539169#M36875</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;        &amp;lt;format type="color"&amp;gt;
          &amp;lt;colorPalette type="expression"&amp;gt;if(match(value,"true"),"#53A051",null)&amp;lt;/colorPalette&amp;gt;
        &amp;lt;/format&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 09 Feb 2021 13:16:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539169#M36875</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-09T13:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539195#M36879</link>
      <description>&lt;P&gt;Thanks for ur response.I want that whole row to get coloured which contains true value.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 15:48:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539195#M36879</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-09T15:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539202#M36881</link>
      <description>&lt;P&gt;Sorry I missed a couple of steps&lt;/P&gt;&lt;P&gt;You need a hidden panel with some style&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;    &amp;lt;panel depends="$stayhidden$"&amp;gt;
      &amp;lt;title&amp;gt;Only SimpleXML no JS required&amp;lt;/title&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #tableRowColor table tbody td div.multivalue-subcell[data-mv-index="1"]{
            display: none;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp; You need to name your table with a matching id - if it already has an id, adjust the above style&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      &amp;lt;table id="tableRowColor"&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Then you need to add this to the end of your query&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| foreach * [| eval &amp;amp;lt;&amp;amp;lt;FIELD&amp;amp;gt;&amp;amp;gt;=mvappend('&amp;amp;lt;&amp;amp;lt;FIELD&amp;amp;gt;&amp;amp;gt;',late)]&lt;/LI-CODE&gt;&lt;P&gt;This assumes you don't already have multi-value fields in your table. If you do, you could try changing the order of the mvappend to stick a copy of the late field at the front of mv field and change the index in the style to 0&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2021 17:00:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539202#M36881</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-09T17:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539232#M36887</link>
      <description>&lt;P&gt;Thanks a lot for ur quick response&amp;nbsp;&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;If u look at the image,true value is coming in all the columns now which I dont want.Can u please help me with this.&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 02:48:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539232#M36887</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-10T02:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539252#M36892</link>
      <description>&lt;P&gt;The style hides the second element of the multivalue fields - the reason you have them showing is that you either haven't included that part of the solution or the table id does not match the name used in the style.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 07:18:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539252#M36892</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T07:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539256#M36894</link>
      <description>&lt;P&gt;This is how I have written its query.Can u plz point out my mistake &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;&amp;lt;row&amp;gt;&lt;BR /&gt;&amp;lt;panel depends="$stayhidden$"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;Only SimpleXML no JS required&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;#tableRowColor table tbody td div.multivalue-subcell[data-mv-index="1"]{&lt;BR /&gt;display: none;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;panel&amp;gt;&lt;BR /&gt;&amp;lt;table id="tableRowColor"&amp;gt;&lt;BR /&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="dpsn-classroom-students" profile.emailAddress="$email$" earliest=0 latest=now&lt;BR /&gt;| join type=outer courseId&lt;BR /&gt;[search index="dpsn-courses" courseState="ACTIVE" ]&lt;BR /&gt;| join type=outer courseId max=0&lt;BR /&gt;[search index="dpsn-course-work" | rename id as courseWorkId ]&lt;BR /&gt;| join type=outer userId, courseId, courseWorkId&lt;BR /&gt;[search index="dpsn-students-submission" | dedup userId, courseId, courseWorkId sortby -updateTime]&lt;BR /&gt;| rename profile.name.fullName as StudentName&lt;BR /&gt;| rename name as Classroom&lt;BR /&gt;| rename submissionHistory{}.gradeHistory.pointsEarned&lt;BR /&gt;as pointsEarned&lt;BR /&gt;| foreach * [| eval &amp;amp;lt;&amp;amp;lt;FIELD&amp;amp;gt;&amp;amp;gt;=mvappend('&amp;amp;lt;&amp;amp;lt;FIELD&amp;amp;gt;&amp;amp;gt;',late)]&lt;BR /&gt;| table StudentName, courseId, courseWorkId, userId, Classroom, descriptionHeading, title, workType, maxPoints, pointsEarned, state&lt;BR /&gt;&amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;earliest&amp;gt;$time_tok.earliest$&amp;lt;/earliest&amp;gt;&lt;BR /&gt;&amp;lt;latest&amp;gt;$time_tok.latest$&amp;lt;/latest&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="rowNumbers"&amp;gt;true&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;&lt;BR /&gt;&amp;lt;format type="color"&amp;gt;&lt;BR /&gt;&amp;lt;colorPalette type="expression"&amp;gt;if(match(value,"true"),"#53A051",null)&amp;lt;/colorPalette&amp;gt;&lt;BR /&gt;&amp;lt;/format&amp;gt;&lt;BR /&gt;&amp;lt;/table&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;/row&amp;gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 07:49:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539256#M36894</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-10T07:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539263#M36896</link>
      <description>&lt;P&gt;I can't see anything wrong with what you have posted except that it does not match the image, for example, late is not listed as a field in the table command. Having said that, this should not affect the solution as you have already copied it to the multi value fields. On that, I also noticed in the image that pointsEarned only has the value true in, so you might want to consider using fillnull to ensure all columns have a value before the foreach which is adding the true. Neither of these should prevent the solution from working. Can you check that the html tags in use match the values used in the style. You can do this by inspecting the page in the browser.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 08:24:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539263#M36896</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T08:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539273#M36900</link>
      <description>&lt;P&gt;I have attached the screenshot on the inspect element.Please have a look&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 10:15:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539273#M36900</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-10T10:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539301#M36905</link>
      <description>&lt;P&gt;Can you capture a bit further up to include the div id="tableRowColor" down to the td?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 13:57:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539301#M36905</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T13:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539303#M36906</link>
      <description>&lt;P&gt;You could also try giving the style a bit of priority - possibly needed if you have other styles applied?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;style&amp;gt;
#tableRowColor table tbody td div.multivalue-subcell[data-mv-index="1"]{
display: none !important;
}
&amp;lt;/style&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 10 Feb 2021 14:04:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539303#M36906</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T14:04:34Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539318#M36909</link>
      <description>&lt;P&gt;Here is the screenshot&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 16:20:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539318#M36909</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-10T16:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539340#M36910</link>
      <description>&lt;P&gt;Can you select the second multivalue element so we can see what style are being applied?&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-02-10 at 3.44.25 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12877iA1D736FFB5A242D7/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-02-10 at 3.44.25 PM.png" alt="Screenshot 2021-02-10 at 3.44.25 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 17:26:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539340#M36910</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T17:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539342#M36911</link>
      <description>&lt;P&gt;As you can see in the picture..Some td tags have two div containing true.If I remove the second true div,the work is done.&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 17:29:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539342#M36911</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-10T17:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539343#M36912</link>
      <description>&lt;P&gt;I didn't see anything in your Simple XML that would add an additional element to the multi-value fields. Has the issue now been fixed?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 17:43:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539343#M36912</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-10T17:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539394#M36922</link>
      <description>&lt;P&gt;No,I m facing the same issue&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 05:49:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539394#M36922</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-11T05:49:03Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539405#M36924</link>
      <description>&lt;P&gt;Can you share a screenshot of the inspection with the second element (the one with data-mv-index="1") selected to show what styles are in operation, so we can track down why the element is still being shown?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 07:33:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539405#M36924</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-11T07:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539426#M36926</link>
      <description>&lt;P&gt;Ya sure.Here is the screenshot&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 08:34:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539426#M36926</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-11T08:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539429#M36927</link>
      <description>&lt;P&gt;You need to select the td two lines down&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2021-02-11 at 2.03.34 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/12888iB9D779D95B465B9F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2021-02-11 at 2.03.34 PM.png" alt="Screenshot 2021-02-11 at 2.03.34 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 08:42:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539429#M36927</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-02-11T08:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Color a row based on a column value</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539431#M36929</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;</description>
      <pubDate>Thu, 11 Feb 2021 08:46:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Color-a-row-based-on-a-column-value/m-p/539431#M36929</guid>
      <dc:creator>sweety1309</dc:creator>
      <dc:date>2021-02-11T08:46:55Z</dc:date>
    </item>
  </channel>
</rss>

