Jump to content

Scientific notation


This topic is 8532 days old. Please don't post here. Open a new topic instead.

Recommended Posts

No warranty expressed or implied, but this may work:

Define a field "sciNum" as text and

a field "plainNum" as a calculation field returning a number.

plainNum =

TextToNum( Left(sciNum, ( Position(sciNum,"E", 1, 1) - 1 ) ) ) *

10 ^ ( TextToNum( Right(sciNum, Length(sciNum) - Position(sciNum,"E", 1, 1) ) ))

Link to comment
Share on other sites

More explanation:

You will enter your number in scientific notation as text into the field "sciNum" , but display the results of the calculation field "plainNum".

The first line of the calculation finds the stuff to the left of the "E" character and then multiplies it by the 10 raised to the power of th stuff on the right side of the "E".

Link to comment
Share on other sites

This topic is 8532 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.