I'm writing a sales report that
first: shows our sales reps what models they've sold to their customers
second: how many customers they've sold each model
third: what % of they're customers have bought each model #
Report should look like this:
Model_110 Model_120 Model_130
Cust_1 x x
Cust_2 x x
Cust_3 x x x
Cust_4 x x
Sales Rep 2 3 4
50% 75% 100%
The x is a formula in the group footer:
if Sum ({@110}, {AA_Q_RRHeader.customer_id})>0 then "X" else ""
So how do I count the "X"s for the salesrep group?
first: shows our sales reps what models they've sold to their customers
second: how many customers they've sold each model
third: what % of they're customers have bought each model #
Report should look like this:
Model_110 Model_120 Model_130
Cust_1 x x
Cust_2 x x
Cust_3 x x x
Cust_4 x x
Sales Rep 2 3 4
50% 75% 100%
The x is a formula in the group footer:
if Sum ({@110}, {AA_Q_RRHeader.customer_id})>0 then "X" else ""
So how do I count the "X"s for the salesrep group?