Cross tab, count founction etc.
Cross tab, count founction etc.
(OP)
Hi,
I have request duration in field (T) and need to count request by this condition (T<12 hours, T<3 hours, T - for all)...
When I use formulas T<12 etc and use it in cross_tab, I always get the count for all - not for this condition...
Any idea?
Many thanks
Petr
I have request duration in field (T) and need to count request by this condition (T<12 hours, T<3 hours, T - for all)...
When I use formulas T<12 etc and use it in cross_tab, I always get the count for all - not for this condition...
Any idea?
Many thanks
Petr
Best regards
Petr
RE: Cross tab, count founction etc.
if {table.T} in 0 to 3 then 1 else 0//for T < 3
if {table.T} in 0 to 12 then 1 else 0 //for T < 12
{table.T} //for T = all
Insert any groups you wish, and then insert summaries on the formulas at the group and/or report level and suppress the details.
-LB