Knowledge Management

How to set a formula for each column in the summary row

hansot
New Member

If you use table visualization during a dashboard, you can set a summary row at the bottom.
The summary row simply shows the sum or percentage of the corresponding column in the table,
Can you set this to a formula for each column?

For example, if you have a
The summary row for each column of 'sales', 'number of customers', and 'customer price' shows only the sum of the corresponding columns,
The summary line of 'customer price' is 'sales' / 'number of customers' = 7366600/951 = 7746.16 ... .
alt text

Tags (1)
0 Karma
1 Solution

elliotproebstel
Champion

You can achieve this by adding an appendpipe subsearch to the end of your current search:

your base search yielding the table above
| appendpipe 
[ | stats sum(sales) AS sales, stats sum("number of customers") AS "number of customers" 
  | eval "customer price"=sales/'number of customers' ]

View solution in original post

0 Karma

elliotproebstel
Champion

You can achieve this by adding an appendpipe subsearch to the end of your current search:

your base search yielding the table above
| appendpipe 
[ | stats sum(sales) AS sales, stats sum("number of customers") AS "number of customers" 
  | eval "customer price"=sales/'number of customers' ]
0 Karma

hansot
New Member

thank you for your help!
i solved it.

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...