Reputation: 573
I have a string which is eval_id = -8880305704784521238
in google sheet.
When I used split formula =SPLIT(A1,"=")
it gives me result in scientific number
eval_id -8.88031E+18
But when I used number formatting it changes the value of the number.-8880305704784520000
which is not equal to the actual number -8880305704784521238
.
How can I fix this issue.
Upvotes: 1
Views: 39
Reputation: 27350
Try this:
=REGEXEXTRACT(A1,"-*\d*.?\d+")
or as an array formula (specify the range):
=ARRAYFORMULA(REGEXEXTRACT(A1:A15,"-*\d*.?\d+"))
Upvotes: 1