I have a report grouped by Class1, Class2, Class3, ShortDesc, CreateDate.
It looks like this:
Class1 Class2 Class3 <- This is GroupHeader1 (I did it this, way to save space)
ShortDesc - test1 <- This is GroupHeader4
27.07.2009 10:00 <- This is GroupHeader5
Ticket-ID AssignedGroup
1 <- this is Detail
2
3
27.07.2009 11:00 <- This is GroupHeader5 Ticket-ID AssignedGroup 4 <- this is Detail
27.07.2009 12:00 <- This is GroupHeader5 Ticket-ID AssignedGroup 5 6
ShortDesc - test2
29.07.2009 10:00 <- This is GroupHeader5
Ticket-ID AssignedGroup
9 <- this is Detail
11
14
29.07.2009 11:00 <- This is GroupHeader5
Ticket-ID AssignedGroup
23 <- this is Detail
28
29.07.2009 12:00 <- This is GroupHeader5
Ticket-ID AssignedGroup
45 <- this is Detail
Now I want to hide the Details, if there is just one ticket in GroupHeader5
This one is acctualy easy. I've said if Count ({TroubleTicket.CreateDate}, {TroubleTicket.CreateDate}, "by hour") = 1 the Hide.
So let move on.
Now I want to hide GroupHeader4, but only if all GroupHeader5 have only one ticket. I tried for hours, but I don't know how to bite this one.