Hi all:
I have an access table that shows the transactions for our company's transactions. The fields in the table are:
address
name
sub
Cprice
Cprice is the price field. The values in this field vary from $100,000 to $2,000,000. I want to write a query that counts the number of addresses and sums up the cprice in increments of $100,000 starting from $100,000 going up to $2,000,000. How would I do that? Logically the concept would be
Select count(address), sum(cprice)
from tbl1
group by (increments of $100,000)
I don't even know if it is possible without using some kind of ASP coding or VBA. Any help would be appreciated.
Thanks.
I have an access table that shows the transactions for our company's transactions. The fields in the table are:
address
name
sub
Cprice
Cprice is the price field. The values in this field vary from $100,000 to $2,000,000. I want to write a query that counts the number of addresses and sums up the cprice in increments of $100,000 starting from $100,000 going up to $2,000,000. How would I do that? Logically the concept would be
Select count(address), sum(cprice)
from tbl1
group by (increments of $100,000)
I don't even know if it is possible without using some kind of ASP coding or VBA. Any help would be appreciated.
Thanks.