Thanks for the reply Sprocket and your help. KeithG supplied the following SQL which works and is simple.
SELECT Left([Postcode],4) AS Code, Count([FieldName]) As CountPostCodes
FROM tbl_Customer_Details
GROUP BY Left(tbl_Customer_Details.PostCode,4);
[FieldName]= Name of the field the...