Convert number

G

Guest

Hi,

Try to format a number field to display in a phone format (999)999-9999 on
report.

=format([field1],"(000)000-0000")

I got #error

=format(CSTR([field1],"(000)000-0000")

I got error 0

What am I missing? Any insights will be greatly appreciated.

Thanks,
Siew-Ming
 
L

lgalumbres

Hi,

For the text box properties that you have the phone displayed on the
report. Try the following:

Under Data tab:
Control Source ........: [Field1]

Under Format tab:
Format........: (000) 000-0000

Cheers!
-Lem
 
J

John Vinson

Hi,

Try to format a number field to display in a phone format (999)999-9999 on
report.

A phone number should be stored in a Text field. You'll never be doing
arithmatic with it after all! Number... Long Integer fields are
limited to values under 2147483647 so if you ever need to use
international dialing codes, you'll be in trouble!
=format([field1],"(000)000-0000")

Just set the Input Mask property of the field to

(000)000-0000

or set the Format property of the form/report control to the same.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Input Mask not working 3
Format text box with check box 1
Defaul area code 2
Phone Number Formatting 8
simple format question 3
Input Mask For Phone Number 4
Input mask & Default value 3
Nz function 6

Top