Splunk Search

How to use fillnull for certain fields (and not for other ones)

rrovers
Contributor

My search ends with:

 

| table Afdeling 20* Voorlaatste* Laatste* verschil

 

It has several detail rows and 1 row with totals. I want to use fillnull for the totals for the 20* columns (2023-10, 2023-11 etc.) but not for Voorlaatste* Laatste* and verschil. 

I can't use 

 

| fillnull 20* value="0.0"

 

because that adds a column "20*" and I don't want to use fillnull 2023-10 etc.

Is there a way to do this?

Labels (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The fillnull command does not support wildcards.  Try using foreach as a wrapper around fillnull.

| foreach 20* [fillnull '<<FIELD>>' value="0.0"]

 

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The fillnull command does not support wildcards.  Try using foreach as a wrapper around fillnull.

| foreach 20* [fillnull '<<FIELD>>' value="0.0"]

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

This is the third post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how to ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...