Hey everyone,
So i have:
List of Customers
List of Items bought (by customers, using CustID)
I have these all on an invoice PER SHOP.
Therefore
SHOP:
Grouped by customer
Sorted by item name
sorted by item quantity
Now if i use =Count(*) it counts ALL the items sold, eg = 500
But i want to know how many customers have shopped at that store in this report.
eg. 50 customers
SO i really want to... count(CustID), but it still gives me 500!?
Ideas? Am i looking at this the wrong way??