From: eStreet4ever on 20 May 2010 21:05 I need to have a six digit value for an ID field. Old db has values ranging from one to four characters and need to front fill with zeros
From: Brad on 20 May 2010 21:31 =right("000000"&a1,6) Assuming information is in cell a1 -- Wag more, bark less "eStreet4ever" wrote: > I need to have a six digit value for an ID field. Old db has values ranging > from one to four characters and need to front fill with zeros
From: Jacob Skaria on 21 May 2010 00:51 If this is just for display purpose then custom format the cells to 000000 The below will return the value as text and not numeric... =TEXT(A1,"000000") -- Jacob (MVP - Excel) "eStreet4ever" wrote: > I need to have a six digit value for an ID field. Old db has values ranging > from one to four characters and need to front fill with zeros
|
Pages: 1 Prev: VLOOKUP and IF formula Next: Combine various cells in to one array |