Formula to change scientific number to regular number or text

G

Guest

"Hi I have a very large column with scientifc numbers that I would like to
change them to a regular number or text.
I don't want to change them manually one by one. Is there any formula to do
that. See example below
column A is the scientific number and I want regular number or text in
column A."
Thank you very much for your help

Scientific Text
2.80E+46 28E45
9.60E+104 96E103
5.50E+252 55E251
3.30E+221 33E220
 
G

Guest

See if this is what you're looking for:

=LEFT(TEXT(A1,"0.00E+00"),FIND("E",TEXT(A1,"0.00E+00"))-1)*10&"E"&MID(TEXT(A1,"0.00E+00"),FIND("+",TEXT(A1,"0.00E+00"))+1,99)-1

HTH,
Elkar
 
G

Guest

Yes, Thank you so much.

Elkar said:
See if this is what you're looking for:

=LEFT(TEXT(A1,"0.00E+00"),FIND("E",TEXT(A1,"0.00E+00"))-1)*10&"E"&MID(TEXT(A1,"0.00E+00"),FIND("+",TEXT(A1,"0.00E+00"))+1,99)-1

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top