View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Muhammed Rafeek M Muhammed Rafeek M is offline
external usenet poster
 
Posts: 179
Default adding extra digits to columns

if you want just display 10 digit: go format cell-Custome-Enter
"0000000000" to Type box
if you want to convert as text format and 10 digit:
A1: your value
B1=RIGHT("000000000"&A1,8)



"Graham at Mac's" wrote:

I have a column of numbers (isbn for books) which should all have 10 digits.
Somewhere in the copying process some of the numbers have not been formatted
as text and have dropped the zero from the beginning of the number. I need to
add a zero to the beginning of all the nine digit numbers in the column. How
do I achieve this ?