> I have a access data I'm doing a mailing
> went into (report) and (labels) put the zipcode
> comes out as "123456789" instead of "12345-6789
> any idea the (input mask) shows the zip as 12345-6789
> sincerely Alex
You are using a mask (00000-9999;;_) to enter the zip code, but you
have not set up the mask to be saved with the data (00000-9999;0;_).
Using an Unbound text control:
=[City] & ", " & [State] & " " & IIf (Len([ZIP])>=9,Left([ZIP],5) &
"-" & Right([ZIP],4),Left([ZIP],5))
12345 or 12345- will print 12345
123456789 or 12345-6789 will print 12345-6789

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail