it would be a little easier to help if you included the search you used, but from what i can see its because you have a mix of number and text strings. 1234 is a number 1,234 is a string, its adding the numbers and skipping the strings. to fix you need to either; a. do your sums before adding commas or b. convert you strings to numbers before doing the math ie | eval numbers=tostring(<string_field>,"commas") | stats sum(numbers) tonumber(<str>, <base>) . Feel free to reply with your original search if you need any further help.
... View more