Hello everyone, I'm having problems with the distinct count summary function.
I'm doing a manual crosstab report (CR 8.0), one of the things I want to accomplish is to count the number of orders according to a difference in their types (ie: urgent, normal). The formula I use is:
//DistinctCountUrgents
if {order_type}="urgent"
then
{order_number}
else
""
the problem is that my distinct count summary will always add the blank as if it was an additional order, resulting in a miscalculation for the summary (always 1 more than it should be).
Does anyone know how can I get CR to ignore this blank value? thank you.
I'm doing a manual crosstab report (CR 8.0), one of the things I want to accomplish is to count the number of orders according to a difference in their types (ie: urgent, normal). The formula I use is:
//DistinctCountUrgents
if {order_type}="urgent"
then
{order_number}
else
""
the problem is that my distinct count summary will always add the blank as if it was an additional order, resulting in a miscalculation for the summary (always 1 more than it should be).
Does anyone know how can I get CR to ignore this blank value? thank you.