Guys, I need to create a table where I have the total of products from each week. Like
Products Total count from week1 Total count from week2 Total count from week3
A 10 5 7
B 15 6 13
C 20 10 21
-- your search
| bin span=1w _time
| stats count by Product, _time
| xyseries Product _time count
| addcoltotals
Hi
First normal stats and then addtotals to get totals
...
| stats sum(*) as * by Products
| addtotals
r. Ismo