Counting UK Post Code

  • Thread starter How do you clear a report of data after
  • Start date
H

How do you clear a report of data after

I would like to get total of post codes, my querys is layed as follows
Post Code - area(BB)- area(BL) how do i get total's in numeric value in
area(BB) etc
BB1 2QA
BL1 2ZZ
BB2 3XX
BL1 CC
 
R

RonaldoOneNil

Create a 2 column query. Set column 1 to
PCPrefix: Left([PostCode],2)
Set column 2 to
HowMany: Left([PostCode],2)
Click on the query totals button, leave column 1 as Group By and change
column 2 to Count
 
H

How do you clear a report of data after

The below works but i would like to great a total in another column as a
numeric value i.e. Total 10

RonaldoOneNil said:
Create a 2 column query. Set column 1 to
PCPrefix: Left([PostCode],2)
Set column 2 to
HowMany: Left([PostCode],2)
Click on the query totals button, leave column 1 as Group By and change
column 2 to Count

How do you clear a report of data after said:
I would like to get total of post codes, my querys is layed as follows
Post Code - area(BB)- area(BL) how do i get total's in numeric value in
area(BB) etc
BB1 2QA
BL1 2ZZ
BB2 3XX
BL1 CC
 

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