Hi Earl,
Let's say you have to split a report by a data range (let's say by starting
quarter) and you have following data:
From, To
1.jan.2000, 15.jan.2000
10.jan.2000, 15.jan.2000
3.feb.2001, 5.mar.2001
I would add another column which I fill by code
From, To, Quarter
1.jan.2000, 15.jan.2000, Q1/2000
10.jan.2000, 15.jan.2000, Q1/2000
3.feb.2001, 5.mar.2001, Q1/2001
Now, I have the perfect grouping column. Within report design a group by
Quarter column and there you go.
Is this what you were looking for?
--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com
Earl said:
I'm not sure what you mean ... I'm using ActiveReports.
Miha Markic said:
Hi Eerl,
Did you think of using grouping (usual report capability)?
how are you doing the reports?
--
Miha Markic [MVP C#] - RightHand .NET consulting & development
miha at rthand com
www.rthand.com
I'm creating a report that needs to be split up by a date range, then
by
employee, then by weeks within the employee daterange. Better to use
multiple dataviews to accomplish this or is there a better way? Filtering
and refiltering hasn't struck me as being the cleanest method of handling
this scenario.