Ranman,
I used SQL and it worked. Here is what I used:
SELECT tblParts.Part, tblParts.Category, Format(tblParts.SellingPrice,"$0,000.00") AS Price, tblParts.PartID
FROM tblParts
ORDER BY tblParts.Part;
This gives me a leading 0 ($0,325.56). I tried to get rid of it but can't. What do I...