View Full Version : Display a Comma


rkal
03-19-2002, 10:43 AM
I have a customer who wants to print "1,000"
in a textbox . They are entering 1000 in the form . Can this be done in access 2000.Basically thay want to display the comma for anything above 999.

Rich
03-19-2002, 11:15 AM
Try setting the Format to #,##0.00

rkal
03-19-2002, 11:46 AM
I tried it and it still prints 1000 on the
report. I don't want the format in the table,
only on the report.

Rich
03-19-2002, 12:18 PM
Is this a text or numeric field?

rkal
03-19-2002, 01:51 PM
Text Field

Rich
03-19-2002, 03:59 PM
Then why not change it to a numeric field?

Pat Hartman
03-19-2002, 05:45 PM
Access will carry forward certain properties from table fields to form controls and report controls. HOWEVER, if you reset these properties at the table level, currently existing forms and reports are NOT changed.

If you want the format to apply to the control on the report, THAT is where you need to set the format.

rkal
03-20-2002, 10:40 AM
I cannot put it in the form or the table because i have to print a barcode with that
information. I Do not wnat to put a "," in it.

rkal
03-20-2002, 12:13 PM
I converted the field to numeric and it works the way i want it. Thank you.