How can I format part of a multi-field control?

  • Thread starter Thread starter Joseph Ellis
  • Start date Start date
J

Joseph Ellis

Hello all,

I have two fields that I'd like to combine into one control in a
report:

=[phone 1 type] & ": " & [phone 1]

This produces something like:

Cell/Mobile: 2223334444

Is there any simple way to modify the above expression to produce
something like:

Cell/Mobile: (222) 333-4444

I'd like to keep this all in one control, if possible. Any
suggestions?

Thanks,
Joseph
 
Try a Control Source of:
=[phone 1 type] & Format([phone 1], "\: \(000\) 0000000")
 
Try a Control Source of:
=[phone 1 type] & Format([phone 1], "\: \(000\) 0000000")

Thanks so much, Allen.
That's exactly what I needed.
 

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

Back
Top