Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have two one cell that I am using Cell A. I am typing giftcard numbers in
the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#2
![]() |
|||
|
|||
![]()
Have you tried using a custom format on the cell with nineteen zeros?
"Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#3
![]() |
|||
|
|||
![]()
Would I just go to Format Cells, Number Tab, Custom, and type 19 zeros in
there? "Patti" wrote: Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#4
![]() |
|||
|
|||
![]()
Since Excel only has 15 digits of precision that won't work, only way is to
format as text or precede entries with an apostrophe ' one can then concatenate them ="000"&A1 where A1 holds the text formatted gift card number -- Regards, Peo Sjoblom "Patti" wrote in message ... Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#5
![]() |
|||
|
|||
![]()
Yes, but hilight the column or cells that you want formatted this way.
"Raymond" wrote: Would I just go to Format Cells, Number Tab, Custom, and type 19 zeros in there? "Patti" wrote: Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#6
![]() |
|||
|
|||
![]()
Awesome that works! Now what if there are already giftcard numbers in there
and I am not typing it each time? Is there a way to do this. I tried to highlight the whole column and choose that format but it did not work. It allowed me to type new values in these cells which were then like 0006003860012345678. Thank you seriously for your help until now. How crazy it would have been that simple. Now I have all these spreadsheets with the numbers that I may need to type all over again. "Patti" wrote: Yes, but hilight the column or cells that you want formatted this way. "Raymond" wrote: Would I just go to Format Cells, Number Tab, Custom, and type 19 zeros in there? "Patti" wrote: Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#7
![]() |
|||
|
|||
![]()
It is not that simple, check and you'll see that your number has changed, it
is not 6003860012345678 Excel has only 15 digits precision and will truncate numeric entries, you need to format as text -- Regards, Peo Sjoblom "Raymond" wrote in message ... Awesome that works! Now what if there are already giftcard numbers in there and I am not typing it each time? Is there a way to do this. I tried to highlight the whole column and choose that format but it did not work. It allowed me to type new values in these cells which were then like 0006003860012345678. Thank you seriously for your help until now. How crazy it would have been that simple. Now I have all these spreadsheets with the numbers that I may need to type all over again. "Patti" wrote: Yes, but hilight the column or cells that you want formatted this way. "Raymond" wrote: Would I just go to Format Cells, Number Tab, Custom, and type 19 zeros in there? "Patti" wrote: Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#8
![]() |
|||
|
|||
![]()
You've lost me! It appears to work on my screen -- are you referring to the
actual data -- not just what is appearing on the screen? "Peo Sjoblom" wrote: Since Excel only has 15 digits of precision that won't work, only way is to format as text or precede entries with an apostrophe ' one can then concatenate them ="000"&A1 where A1 holds the text formatted gift card number -- Regards, Peo Sjoblom "Patti" wrote in message ... Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#9
![]() |
|||
|
|||
![]()
It works now. You are awesome!!! The both of you
"Peo Sjoblom" wrote: Since Excel only has 15 digits of precision that won't work, only way is to format as text or precede entries with an apostrophe ' one can then concatenate them ="000"&A1 where A1 holds the text formatted gift card number -- Regards, Peo Sjoblom "Patti" wrote in message ... Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#10
![]() |
|||
|
|||
![]()
Ok -- I follow you now -- sorry! I didn't notice it was dropping the last
number. "Peo Sjoblom" wrote: It is not that simple, check and you'll see that your number has changed, it is not 6003860012345678 Excel has only 15 digits precision and will truncate numeric entries, you need to format as text -- Regards, Peo Sjoblom "Raymond" wrote in message ... Awesome that works! Now what if there are already giftcard numbers in there and I am not typing it each time? Is there a way to do this. I tried to highlight the whole column and choose that format but it did not work. It allowed me to type new values in these cells which were then like 0006003860012345678. Thank you seriously for your help until now. How crazy it would have been that simple. Now I have all these spreadsheets with the numbers that I may need to type all over again. "Patti" wrote: Yes, but hilight the column or cells that you want formatted this way. "Raymond" wrote: Would I just go to Format Cells, Number Tab, Custom, and type 19 zeros in there? "Patti" wrote: Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
#11
![]() |
|||
|
|||
![]()
type 1234567891234567 in an empty cell, then look at the value in the
formula toolbar and you will notice that the last (16th) digit has been replaced with a zero. Go to help and look up specifications, look at the calculation specifications and notice 15 digits of precision, that is why one need to use text formats for all numbers with more than 15 digits -- Regards, Peo Sjoblom "Patti" wrote in message ... You've lost me! It appears to work on my screen -- are you referring to the actual data -- not just what is appearing on the screen? "Peo Sjoblom" wrote: Since Excel only has 15 digits of precision that won't work, only way is to format as text or precede entries with an apostrophe ' one can then concatenate them ="000"&A1 where A1 holds the text formatted gift card number -- Regards, Peo Sjoblom "Patti" wrote in message ... Have you tried using a custom format on the cell with nineteen zeros? "Raymond" wrote: I have two one cell that I am using Cell A. I am typing giftcard numbers in the cells as 6003860012345678. The giftcard = 16 digits. I need it to default and place 3 zero's at the beginning of each of the giftcard numbers like "0006003860012345678". The giftcard should equal 19 digits with the 34 zeros out in front. I tried merging them. Is there a way to do this? Sincerely, Raymond |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to copy cells with keeping exact formula intact | Excel Discussion (Misc queries) | |||
Keeping cells in place | Excel Worksheet Functions | |||
How do I fill down keeping one cell calculation from changing in . | Excel Discussion (Misc queries) | |||
Modify Row & Cell Contents based upon Cells Values | Excel Worksheet Functions | |||
How can I group a bunch of cells together, so I can sort by colum. | Excel Worksheet Functions |