There isn't a search that can't be made uglier with foreach XD | makeresults format=csv data="ServerName,UpgradeStatus Server1,Completed Server2,Completed Server3,Completed Server4,Completed Server5,Completed Server6,Completed Server7,Pending Server8,Pending Server9,Pending Server10,Processing Server11,Processing" | stats count by UpgradeStatus | transpose 0 header_field=UpgradeStatus | fields - column | eval Total=0 | foreach * [ eval Total=Total+<<FIELD>> ] As an alternative you can also use appendpipe | makeresults format=csv data="ServerName,UpgradeStatus Server1,Completed Server2,Completed Server3,Completed Server4,Completed Server5,Completed Server6,Completed Server7,Pending Server8,Pending Server9,Pending Server10,Processing Server11,Processing" | stats count by UpgradeStatus | appendpipe [ stats sum(count) as count | eval UpgradeStatus="Total" ] | transpose 0 header_field=UpgradeStatus
... View more