Excel number format problems

G

Guest

If I want to use a number with 8 digits and a leading zero I've set up a
custom format using 8 zeros. Trouble is as soon as I go out of format option
the cell formatting changes to Greek. The leading zeros are retained but
dissapear when I use the info on the worksheet to merge to labels or other
Word documents.

How do I retain my custom cell formatting ????
 
B

Bryan Hessey

Set the cell formula to 'text' - ie:

=Text(A1*A2,"00000000")

or

=Text( your calculation ,"00000000")

--
 
G

Guest

That would be fine if I wasn't using a simple formula in the cells as well.
It's a basic six digit date code with an extra two digits to determine
chronological order of production on batch number labels.

I've set it up so that it does a simple calculation =B7+1 for instance where
B7 is the cell immediately above in the column so that it continues down the
column when copied and pasted adding one number at a time. It needs to be
flexible as some start with 0 if the day is 1 to 9 in the month. If I could
only retain the custom number format instead of it changing to Greek all the
time it would be fine.
 
B

Bryan Hessey

Did you try

=TEXT(B7+1,"00000000")

in B8 ?

--

That would be fine if I wasn't using a simple formula in the cells as
well.
It's a basic six digit date code with an extra two digits to determine
chronological order of production on batch number labels.

I've set it up so that it does a simple calculation =B7+1 for instance
where
B7 is the cell immediately above in the column so that it continues
down the
column when copied and pasted adding one number at a time. It needs to
be
flexible as some start with 0 if the day is 1 to 9 in the month. If I
could
only retain the custom number format instead of it changing to Greek
all the
time it would be fine.
 

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