Hello,
I have a form that provides the amount paid when a client name is selected. The problem is when the sum displays in a text box using a sql statement it's not formatting correctly. I want to format the box to add commas when the number is thousands. Here is my sql syntax
SELECT Round(Sum([tblclient].[total])) AS Expr1 FROM tblclient WHERE (((tblpurchase.client)=[forms]![frm_purchased_1]![client]) AND ((
[listpurchased])=[tblclient].[client]));
Thank you