Splunk Search

Is there a way to divide the addcoltotals from each case statement in my search?

jhayIV
Engager

Is there a way to divide the addcoltotals from each case statement in the following :

eval daysclass=case(
NoOfDays<=14,"0-14 DAYS ",
NoOfDays>15 AND NoOfDays<=28,"14-28 DAYS ",
NoOfDays>29 AND NoOfDays<=42,"28-42 DAYS ",
NoOfDays>43 AND NoOfDays<=56,"42-56 DAYS",
NoOfDays>57, "56 DAYS OR MORE "
,1=1,"NULL")|search daysclass!=NULL|stats count(Name) AS "COUNT" by daysclass| ADDCOLTOTALS
0 Karma

cmerriman
Super Champion

if i get what you're doing, i think this might work:

eval daysclass=case(
 NoOfDays<=14,"0-14 DAYS ",
 NoOfDays>15 AND NoOfDays<=28,"14-28 DAYS ",
 NoOfDays>29 AND NoOfDays<=42,"28-42 DAYS ",
 NoOfDays>43 AND NoOfDays<=56,"42-56 DAYS",
 NoOfDays>57, "56 DAYS OR MORE "
 ,1=1,"NULL")|search daysclass!=NULL|stats count(Name) AS "COUNT" by daysclass|eventstats sum(COUNT) as total|eval divide=COUNT/total
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...