Getting Data In

how to avoid displaying the field which contains #?

pavanae
Builder

Hi have a field named acts which displays all the different acts with below query

base search | table acts

which displays as below

displayed screen
113;screen

kjhkh;jkh

hjgjh#kjhk
jhgjhyg#

Now I dont want to display any of the results which contains # in it. How can I filter them?

0 Karma
1 Solution

somesoni2
Revered Legend

Try like this

base search | table acts | eval acts=mvfilter(NOT match(acts,"#"))

View solution in original post

0 Karma

niketn
Legend

If acts is one of your extracted fields you can filter the same in the base search itself

<Your Base Search> acts!="*#*"
| table acts
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Here's one way.

base search | regex acts!="#" | table acts
---
If this reply helps you, Karma would be appreciated.
0 Karma

somesoni2
Revered Legend

Try like this

base search | table acts | eval acts=mvfilter(NOT match(acts,"#"))
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...