Format Telepone Number

  • Thread starter Thread starter shearness
  • Start date Start date
S

shearness

I am using a stored procedure to query data in a SQL backend. I have
the telephone number stored as 9999999999. I am wondering how I can get
that number formatted and displayed in a list box. I want standard
formatting, (999) 999-9999. How can I do this? Thanks.
 
A list box is just a query. If you modified your query,
change the telephone number entry using

format([telephone number], "(000) 000-0000")

Hope this will help.
 
Back
Top