Solved: Count vs Cumulative Count - Help The Noob

As the post says, I'm pretty new. I'm trying to wrap my head around the difference between count and cumulative count. Everything I've googled thus far hasn't been very helpful. If anyone has a good explanation/analogy, I'd be appreciative. Thanks!!

Hi @paintbb84
Let's say you have a table with sales orders.
By doing Count grouped by SalesDate:Month, you would see how many orders there was for each month.

But CumulativeCount would then add values from previous month incrementally.

Thank you for the explanation! That helps a lot.