you can join the product table (if you have) and do as advised in post#2.
this one does not have a product table:
TRANSFORM Count(tblPayments.Product_ID) AS CountOfProduct_ID
SELECT "Total Count" AS Remarks
FROM tblPayments
GROUP BY "Total Count"
PIVOT tblPayments.Product_ID In (1,2,3,4,5,6,7);