- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
splunkuser320
Path Finder
12-02-2022
08:40 AM
I want to change the column cell background based on the value, but I also want to use a wild card.
Example Field values
Passed (12:20)
Failure (2:30)
Passed (4:40)
I want to change the cell color based on only Passed and Failure and ignore rest of the string.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
bowesmana

SplunkTrust
12-05-2022
03:41 PM
If this was a solution for you, please mark it as solved, so others can benefit.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
splunkuser320
Path Finder
12-04-2022
08:27 PM
Its works. Thanks for your help!!!
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
bowesmana

SplunkTrust
12-05-2022
03:41 PM
If this was a solution for you, please mark it as solved, so others can benefit.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
bowesmana

SplunkTrust
12-04-2022
02:19 PM
Use the colorPalette format option
<format type="color" field="your_field">
<colorPalette type="expression">case(match(value,"^Passed"), "#008000", match(value, "^Failed"), "#F8BE34", true(), "#000")</colorPalette>
</format>
See the documentation here
