ACC97: Input Masks Applied to Zip Code Field Ignored with Label Wizard (185970)
The information in this article applies to:
This article was previously published under Q185970 Moderate: Requires basic macro, coding, and interoperability skills.
SYMPTOMS
When you use the Label Wizard to make mailing labels and include a zip code
field in the same row as other fields, input masks applied to the zip code
field are ignored.
CAUSE
Input masks can only apply to a single field in a single text box. When a
text box on a report contains more than one field, the input masks for
individual fields are ignored.
RESOLUTION
Use an immediate if (IIf) statement to format the output for the zip code
field. You can change the ControlSource property of the text box that
contains the zip code field in the report's Design view.
Using an Immediate IF to Format a Text Field- Create the Labels Employees: Report by following the steps in the "Steps
to Reproduce Behavior" section later in this article.
- Right-click the last text box in the Labels Employees: Report, and then
click Properties on the menu that appears.
- In the Properties dialog box, click the Data tab, click in the
ControlSource property box, and then click the Build button to the right
of the ControlSource property box to open the Expression Builder.
- In the Expression Builder, change the existing formula
=Trim([City] & " " & [zip])
to:
=Trim([City] & " " & IIf(Len([zip])=9,Left([zip],5) & "-" &
Right([zip],4),[zip]))
- Click OK to close the Expression Builder.
- Close the property sheet.
- On the File menu, click Save to save the report.
- On the File menu, click Print Preview to run the report.
REFERENCES
For more information about using input masks, search the Help Index for
"input masks," and then "Create an input mask to control how data is
entered in a field or control."
For more information about the IIf() function, see the following Knowledge
Base article:
106288 ACC: How to Use the IIf() (Immediate If) Function
Modification Type: | Major | Last Reviewed: | 9/26/2003 |
---|
Keywords: | kbprb KB185970 |
---|
|