From: cheppy on
I have a Zip Code Table with only the first 5 digits and do not have the last
4 digit.
How can I make them in 9 digit zip code with the last 4 digit as 0000?.
manually I've been doing this (01234 then add the last digit as -0000)
which come to this 01234-0000.
From: Gary''s Student on
With a five digit ZIP code in A1, in another cell:

=A1 & "-0000"

--
Gary''s Student - gsnu201003


"cheppy" wrote:

> I have a Zip Code Table with only the first 5 digits and do not have the last
> 4 digit.
> How can I make them in 9 digit zip code with the last 4 digit as 0000?.
> manually I've been doing this (01234 then add the last digit as -0000)
> which come to this 01234-0000.