Splunk Search

How to view percentage row to table?

SplunkNewbie18
New Member

Hi,

I've read through transpose command to try suit into the statistics I would want to view but it doesn't seems to work.

I'm having the following data in a form of table:

Table                 A           B
Cases                 1           4
Percentage            20%        80%

How do I make the Percentage to be part of a column like:

Table        A     Percentage A   B  Percentage B 
Cases        1           20%      4        80%
Tags (1)
0 Karma
1 Solution

HiroshiSatoh
Champion

If you simply convert

(your search)
|table Table A B
|stats values(*) as *
|eval Table=mvindex(Table, 0)
|eval Cases_A=mvindex(A, 0),"Percentage A"=mvindex(A, 1)
|eval Cases_B=mvindex(B, 0),"Percentage B"=mvindex(B, 1)
|rename Cases_A as A,Cases_B as B
|table Table A "Percentage A" B "Percentage B"

View solution in original post

0 Karma

HiroshiSatoh
Champion

If you simply convert

(your search)
|table Table A B
|stats values(*) as *
|eval Table=mvindex(Table, 0)
|eval Cases_A=mvindex(A, 0),"Percentage A"=mvindex(A, 1)
|eval Cases_B=mvindex(B, 0),"Percentage B"=mvindex(B, 1)
|rename Cases_A as A,Cases_B as B
|table Table A "Percentage A" B "Percentage B"
0 Karma

mayurr98
Super Champion

how did you get this table? and can you tell me what are the fields and values in that table?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...