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!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...