Converting text digits to numbers outputs trailing zeros over 15 digits. Does the same when using the numbervalue() function or you multiply the text by 1. Is this a limitation some kind?
Ex:
=NUMBERVALUE("999732005652012") --> 999 732 005 652 012 OK
=NUMBERVALUE("1999732005652012") --> 1 999 732 005 652 010 ERR
=NUMBERVALUE("1999732005652012123") --> 1 999 732 005 652 010 000 ERR
or
=("1999732005652012123") * 1 --> 1 999 732 005 652 010 000 ERR