1. Create a query using this table.
2. Depress the Total button on the toolbar (upper Sigma icon.)
Access adds a Total row to the grid.
3. Drag the Part and Problem fields into the grid.
Accept "Group By" in the Total row under these fields.
4. Drag the primary key field into the grid (or one of the others again.)
In the Total row under this field, choose Count.
The query will give you 3 columns with the data you wanted.
If you want the 3 in one, try typing this into the Field row:
Combined: Trim([CountOfID] & " " & [Part] & " " & [Problem])
In the Total row, choose Expression.
If you counted the Part field instead of a field named ID, you will need to
use CountOfPart instead of CountOfID.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I have some records where one column is a part, the other is the
> problem with the part. One part can have different problems, but all
[quoted text clipped - 15 lines]
>
> James