Hi @sjkalai, you could try to use the append command at the end of your search: your_search
| stats count BY usage_range quarter
| evenstats sum(count) AS quarter_total BY quarter
| eval perc=count*100/quarter_total
| eval value_to_display=count." (".perc."%)"
| chart values(value_to_display) AS value_to_display OVER usage_range BY quarter
| append [ search your_search | evenstats sum(count) AS quarter_total BY quarter ] If this answer solves your need, please accept it for the other people of Community. Ciao. Giuseppe P.S. Karma Points are appreciated 😉
... View more