Excel – Scientific notation in Excel

cell formatmicrosoft excelnumberingtext formatting

I need make a number format similar to scientific notation, but without E nor e. Just classic like this:

alt text

(In latex it's 2.3\times10^3)

Maybe Excel doesn't support this format.

(I have on mind Number Format – for hundreds numbers – not in math formula)

Best Answer

You could use html. Type this into Notepad

<html>2.34 x 10<sup>-5</sup> + 5.67 x 10<sup>-6</html>

Copy it and, in Excel, Paste Special - Unicode. It will render whatever html you have. You won't be able to edit it in Excel though.

Related Question