If you are trying to add two numbers from two different searches it's highly likely you can do that in one search using stats. Are you able to share more about each search? Otherwise, you can do an append to combine the two outputs with something like: | makeresults | eval abc=100 | table abc
| append [| makeresults |eval xyz=45 | table xyz]
| stats sum(abc) as abc, sum(xyz) as xyz
| eval total = abc + zyz This search gets your first number, abc, then appends the second number, xyz. Then we run stats to get them on one row, and finally do a simple eval for the total. You could then use this result in a single value visualization on a dashboard. But as I mentioned, you can probably get both totals using stats. See docs for more info.
... View more