zipcode: Left([address_mailing_zip],5) & "-" & Right
([address_mailing_zip],5)
What do I need to do if a zip code has a 0 as the last
number or the 6th number. Using 4 for the right function
deletes the front 0. Using 5 for the right function adds
the last digit on the first 5 characters.
30068-0023
30068-2300
zipcode: IIf([address_mailing_zip] Like
"#####-",Left([address_mailing_zip],5),[address_mailing_zip])
"Sharon" <pdm...@comcast.net> wrote in message
news:0cfb01c3876c$4c2affd0$a001...@phx.gbl...