Trailing Zeros Problem. Need Help Badly

vaneeshjha

New Member
Joined
Aug 1, 2014
Messages
1
Hi,

I had a excel sheet sent over to me it had account number of 16 digits

something like this

8342561027735067

<tbody>
</tbody>

but when i opened excel sheet all the numbers were converted to something like this

8.14731E+15

<tbody>
</tbody>

When i tried converting it into number all the digits had zeros in the end and account numbers lost its significance

i.e. something like this
8342561027735060

zero in the end. i have been searching a lot couldn't find anything. Maybe you guys can help me out. The account numbers are very critical and i am the only user who has the copy. The machine on which excel sheet was composed that user has already deleted it.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
You could Format the range of cells - Format, Custom, 0000000000000000

or the Macro Equivalent of:

Sub Macro1()
Selection.NumberFormat = "0000000000000000"
End Sub
 
Upvote 0
I had a excel sheet sent over to me it had account number of 16 digits
something like this
8342561027735067

<tbody>
</tbody>
but when i opened excel sheet all the numbers were converted to something like this
8.14731E+15

<tbody>
</tbody>
When i tried converting it into number all the digits had zeros in the end and account numbers lost its significance i.e. something like this
8342561027735060

zero in the end.

You need to enter account "numbers" as text.

You do not provide sufficient information for us to help you with that.

But my guess is: the "excel sheet" that some sent you is actually a CSV file (suffix "csv", not "xls", "xlsx", etc). Otherwise, there would be no conversion if you simply open a true Excel file (suffix "xls", "xlsx", etc).

In that case, instead of opening the file directly, you should start Excel (click on Excel program icon, not the filie icon), and import the data file by clicking on Data, Get External Data, From Text. Then following the Text Import Wizard dialog. When you get to the last menu (step 3 of 3), select the column with the account "numbers", then select Text under "Column data format".

Explanation....

When you input numbers into Excel, either manually or by reading a file, Excel interprets only the first 15 significant digits, replacing any subsequent digits with zeros.

Once that happens, there is nothing you can do to recover the replaced digits.

The notation 8.14731E+15 is called Scientific format. It is how Excel presents large (and very small) numbers when the cell is formatted as General. This just affects the appearance of numbers.

When you open a CSV file directly in Excel, most cells are formatted as General because, by definition, a CSV file does not include the original format of the cells.

Some notable examples... If the data looks like a date or time, Excel formats the cell as Date or Time. If the data looks like a percentage, Excel formats the cell as Percent. There might other exceptions. But the point is: Excel interprets the data as numeric one way or another, if looks numeric.
 
Last edited:
Upvote 0
And...Excel has a 15 digit limit !
 
Upvote 0

Forum statistics

Threads
1,215,061
Messages
6,122,922
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top