Thousands separator

BeataG

Registered User.
Local time
Today, 02:46
Joined
Oct 24, 2008
Messages
21
Hi,

Could anyone help me and tell if there is thousands separator in Access, the same or similar as in Excel. I'd like to use it to one of the field in my query.

Thank you in advance.
 
Yes there is, In the property FORMAT of your queryfield change it to STANDARD.

JR
 
Thank you
Regards
 
You can copy the format from Excel if you like, then use it in code. If you go to custom format in Excel, the one you might want for this is #,##0, so say you wanted to format a text box:

Code:
textbox.value=format([fieldname],"#,##0")
 
i want the digit grouping as indian number i.e lakhs, crore viz 12,34,567.00 in access report

i am using access 2007 and regional setting for numbers already set to indian grouping.
it works in excel but not in access table/report.
help
 
Last edited:
You could use format function, something like this:

Code:
NewPrice: Format([Price],"##\,##\,###\.00")

JR
 

Users who are viewing this thread

Back
Top Bottom