Formatting phone field based on value in another field

K

Ken Warthen

I'm trying to format a field that contains a phone number on a split form.
If the value in the Country/Region field is equal to the value "USA" I want
the phone field to format as (@@@) @@@-@@@@. If the value is equal to any
other country abbreviation I want to display whatever the value is without
formatting. I'm using the following in the Control Source for the phone
number field, but it's generating #Name? values.

=IIf([Country/Region]="USA",Format([Business Phone],"(@@@)
@@@-@@@@"),[Business Phone])

Any idea what I'm doing wrong here?

Ken
 
T

Tom van Stiphout

On Thu, 15 Apr 2010 15:25:01 -0700, Ken Warthen

The error seems to indicate that either [Country/Region] or [Business
Phone] is not the name of a field in the underlying data set.
Otherwise your expression looks good.

-Tom.
Microsoft Access 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

Top