How to sum (total) numeric values in a column #21
AndrewBlumhardt
started this conversation in
General
Replies: 2 comments
-
|
Maybe by using sum? https://docs.microsoft.com/en-us/azure/data-explorer/kusto/query/sum-aggfunction StormEvents
| summarize EventCount=count(), TotalDeathCases = sum(DeathsDirect) by State
Regards Peter |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Something like: AzureActivity |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am having a brain freeze today. If you have a bunch of rows with a numeric column, let's say count. How can you add together all of those values into a total? For example, each row has a failure count and I want to display total failures.
Beta Was this translation helpful? Give feedback.
All reactions