I've got an rdlc report with a data source that provides something like this:
1/1/01 User1 5
1/1/01 User2 3
2/1/01 User1 4
2/1/01 User2 8
3/1/01 User1 5
4/1/01 User2 3
6/1/01 User1 9
6/1/01 User2 2
I then use a matrix (aka tablix) to show Date down the left hand side and User across the top. The count goes at the intersection. This all works okay.
I can configure it that missing cells have a 0
- eg for User2
on the 3rd.
The problem is that there is no entry for the 5th (eg a date when NO users had any activity). This also messes up graphs
What I want it to do is populate every date between the lowest and highest date.
How can I achieve this?