Dear All.
I am trying to create the Buckets for report but not able to success, following is the data in excel file.
SRNO
|
USER
|
STEPS
| MONTH |
1
|
A
|
161
| JAN |
2
|
A
|
165
| FEB |
3
|
B
|
147
| JAN |
4
|
C
|
121
| MAR |
5 | C | 250 | JAN |
6 | D | 389 | JAN |
7 | D | 89 | FEB |
8 | E | 654 | MAR |
9 | E | 1800 | FEB |
Now base on that data i want to create the buckets like this.
MONTH | USERCOUNT | TOTAL STEPS | STEPS 0 - 100 | STEPS 101 - 200 | STEPS > 200 |
---|---|---|---|---|---|
JAN | 4 | 947 | 0 | 2 | 2 |
FEB | 3 | 2054 | 1 | 1 | 1 |
MAR | 2 | 775 | 0 | 1 | 1 |
Currently i am using following formuala but its not showing any thing in any of the bucket.
=Sum(Count([USER])) Where(Sum([STEPS]) Between(0;100) ForEach([USER];[MONTH]))
=Sum(Count([USER])) Where(Sum([STEPS]) Between(101;200) ForEach([USER];[MONTH]))
=Sum(Count([USER])) Where(Sum([STEPS]) >200 ForEach([USER];[MONTH]))
this thing is showing nothing and fields are blank.
your help will be highly appreciated.
kind regards,