- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ashidhingra
Path Finder
06-20-2022
09:32 AM
| where like(RouteCode, "50%") AND !like(RouteCode, "503%")
I am trying to show Routecode 501,2, -- anyother not 503.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
06-20-2022
11:27 AM
The negation operator is NOT.
| where (like(RouteCode, "50%") AND NOT like(RouteCode, "503%"))
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
06-20-2022
11:27 AM
The negation operator is NOT.
| where (like(RouteCode, "50%") AND NOT like(RouteCode, "503%"))
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
