Reporting

transpose with a group by

mschellhouse
Path Finder

my data is currently setup as follows:

Group / Flag / Count
G1 / No / 5
G1 / Yes / 10
G1 / Total / 15
G2 / No / 7
G2 / Yes / 19
G1 / Total / 26
...

I am trying to "transpose" the data to this:
Group / Yes / No / Total
G1 / 5 / 10 / 15
G2 / 7 / 19 / 26
...

0 Karma
1 Solution

jluo_splunk
Splunk Employee
Splunk Employee

So it sounds like you have something like this..

| stats count by group, flag
| appendpipe [stats sum(count) by group]

Instead, try this..

| chart count by group, flag
| addtotals row=t col=f

View solution in original post

jluo_splunk
Splunk Employee
Splunk Employee

So it sounds like you have something like this..

| stats count by group, flag
| appendpipe [stats sum(count) by group]

Instead, try this..

| chart count by group, flag
| addtotals row=t col=f

jluo_splunk
Splunk Employee
Splunk Employee

Can you post the search string you have to get your current table of data?

0 Karma

mschellhouse
Path Finder

Happy to answer questions about it but can't post the actual query. Doing a stats command by Group and Flag to get the count. To get the Total, I am using appendpipe.

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 ...