format record count numbers

  • Thread starter Thread starter Todd
  • Start date Start date
T

Todd

I've got a report that includes a record count of each record and I've got
alot of records for the report It works fine but I'd like to have the format
of the actual numbers to display as such: 10,234. 10,235. etc with at
period at the end and a comma as the numbers reach the thousands point.

I've got the . in the format part of the properties section but cannot
figure out how to add the comma. Right now it displays with just the . (ex:
10234. 10235.)
 
Try set the format property to Standard with 0 decimal places. If you need
the . you can add a label with . in the Caption property.
 
Hi Todd,

Try using #,##0. for the format. It should display large numbers with
the appropriately placed commas and the period at the end.

Clifford Bass
 
Back
Top