A
Aaron
Hello,
I have a complex question.
I have started the process of this solution by creating the basic query:
SELECT DISTINCT tblCustomer.area, ([predir] & " " & [street] & " " &
[strsfx]) AS [Unique Street Name], tblCustomer.city,
Count(tblCustomer.customerkey) AS CountOfCustomers
FROM tblCustomer
GROUP BY tblCustomer.area, ([predir] & " " & [street] & " " & [strsfx]),
tblCustomer.city
HAVING (((tblCustomer.area)=[select Customer Area]));
Now the complex part of this is question is creating a range of addresses
from the Unique Street Name part of it with the basis is if there is 325
customers on S 100th Street with the starting address of 300 and ending
address of 21356 and with this it needs to be grouped odd/even and portions
of 80 per grouping.
TIA
Aaron
I have a complex question.
I have started the process of this solution by creating the basic query:
SELECT DISTINCT tblCustomer.area, ([predir] & " " & [street] & " " &
[strsfx]) AS [Unique Street Name], tblCustomer.city,
Count(tblCustomer.customerkey) AS CountOfCustomers
FROM tblCustomer
GROUP BY tblCustomer.area, ([predir] & " " & [street] & " " & [strsfx]),
tblCustomer.city
HAVING (((tblCustomer.area)=[select Customer Area]));
Now the complex part of this is question is creating a range of addresses
from the Unique Street Name part of it with the basis is if there is 325
customers on S 100th Street with the starting address of 300 and ending
address of 21356 and with this it needs to be grouped odd/even and portions
of 80 per grouping.
TIA
Aaron