M HYPE SPLASH
// updates

How to Format Excel Cells for Engineering Notation?

By Michael Henderson

In the engineering disciplines int's nice to be able to have values formatted in easily readable engineering notation, where the exponent is a multiple of three. How can this be accomplished in Excel?

2 Answers

In the cell formatting options create a new custom type for ##0.0E+0.

enter image description here

To display a value with prefixes instead, one might do some formula massaging and end up with e.g.

=LEFT(TEXT(A1,"##0.0E+0"),FIND("E",TEXT(A1,"##0.0E+0"))-1) & MID("npum kMGT",5+VALUE(MID(TEXT(A1,"##0.0E+0"),FIND("E",TEXT(A1,"##0.0E+0"))+1,100))/3,1) &"s"

... for a value in A1, that represents a time in seconds (as indicated by the last "s" in the formula).

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy