cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
Wende
Level II

How to keep numeric data from changing to scientific notation during import from Excel file

Hello,

 

I am importing data from an Excel file. My data becomes scientific notation and then I lose the details from the last two digits.

 

How can I import numbers from an Excel file so that JMP does not change the format to scientific notation?

 

Here is an example of the data:

 

Number
20160609144108701
20160609144108702
20160609144108703
20160609144108704
20160609144108705
20160609144108706
20160609144108707

 

Thank you for your help!

 

Wende

Wende
3 ACCEPTED SOLUTIONS

Accepted Solutions
Craige_Hales
Super User

Re: How to keep numeric data from changing to scientific notation during import from Excel file

What does the data represent? If it is a date-time in 2016, precise to the millisecond, the answer might be for converting it to a JMP date-time value. If it is a part number you should keep it as character data. 

Is it a CSV file? Are you using text file import or Multiple File Import or Excel Import? 

I'm not an Excel expert, but I think those values are string data in Excel.

Most programs (JMP included) use a double precision floating point representation that can't handle exact integers bigger than 2^53, which is smaller than those numbers.

You can make JMP use a format that will look like an integer, but least significant digits are not really there.

Format( "Fixed Dec", 18, 0 )

There are at most 15-16 significant digits in a double.

big integer valuesbig integer values

Craige

View solution in original post

Wende
Level II

Re: How to keep numeric data from changing to scientific notation during import from Excel file

Thank you very much for your response!

 

I wound up adding a letter at the beginning so that the data would import correctly. 

 

The format is a blend of date format and sequential numbering which causes the date to not work directly. 

 

Thanks again.


Wende

Wende

View solution in original post

dhwkoo
Level I

Re: How to keep numeric data from changing to scientific notation during import from Excel file

If using the import tool, you can select character for the column data type.

dhwkoo_0-1594275343925.png

 

 

View solution in original post

5 REPLIES 5
Craige_Hales
Super User

Re: How to keep numeric data from changing to scientific notation during import from Excel file

What does the data represent? If it is a date-time in 2016, precise to the millisecond, the answer might be for converting it to a JMP date-time value. If it is a part number you should keep it as character data. 

Is it a CSV file? Are you using text file import or Multiple File Import or Excel Import? 

I'm not an Excel expert, but I think those values are string data in Excel.

Most programs (JMP included) use a double precision floating point representation that can't handle exact integers bigger than 2^53, which is smaller than those numbers.

You can make JMP use a format that will look like an integer, but least significant digits are not really there.

Format( "Fixed Dec", 18, 0 )

There are at most 15-16 significant digits in a double.

big integer valuesbig integer values

Craige
Wende
Level II

Re: How to keep numeric data from changing to scientific notation during import from Excel file

Thank you very much for the knowledge about 2^53. I bet that some programmer thought there was no way that someone would ever need that big of a number when programming years and years ago on a 256 kb computer :)

 

I changed the file to import to a text file and also added a leading character to solve the issue.

 

Wende

Wende
Thierry_S
Super User

Re: How to keep numeric data from changing to scientific notation during import from Excel file

Hi Wende,
I can confirm that for long numerical sequences (like you have), Import from Excel caps the number of significant digits to 15.
Here is a work around suggestion (not pretty but it should work):

If your values are not truly numerical but are strings made of digits, try adding one character at the end of the Excel column named Number. That will force JMP to load these as character. You can then extract the necessary information with Character functions.

Another way is to export your Excel file as TAB delimited and use the interactive dialog to set the data type

Finally, it looks like your data may be dates and times plus something else. If it is the case, it might be useful to look into data/time formatting.

Best regards,

TS

Thierry R. Sornasse
Wende
Level II

Re: How to keep numeric data from changing to scientific notation during import from Excel file

Thank you very much for your response!

 

I wound up adding a letter at the beginning so that the data would import correctly. 

 

The format is a blend of date format and sequential numbering which causes the date to not work directly. 

 

Thanks again.


Wende

Wende
dhwkoo
Level I

Re: How to keep numeric data from changing to scientific notation during import from Excel file

If using the import tool, you can select character for the column data type.

dhwkoo_0-1594275343925.png