Count Unique Records

C

CTAY

How can I count the number of stores per region?

Store # City
1 Houston
1 Houston
1 Houston
4 Dallas
4 Dallas

I want to see the results of Houston = 3 and Dallas = 2
 
G

gls858

CTAY said:
How can I count the number of stores per region?

Store # City


I want to see the results of Houston = 3 and Dallas = 2

another method would be to sort by store# or city and then use the
subtotal function and select count. The result would be something
like this

1 Houston
1 Houston
1 Houston
Houston Total 3
4 Dallas
4 Dallas
Dallas Total 2

gls858
 
M

M Kan

You could also generate a pivot table. If you use shortcuts, you can
generate this in less than 15 seconds
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top