JMP tables have two formats, one for the way numbers are typed into a cell and one for the way numbers are displayed. If the m/d/y and d/m/y formats get used together, it will be hard to puzzle out.
Someone else, or tech support, will have to help with the plugin.
JMP can use Open(...) for either a .xlxs or a .csv file. They are very different; I'm most familiar with the .csv. .xlsx has the advantage of not needing to export the .csv from excel first. Someone else, or tech support, can help with the .xlsx case.
JMP has two ways to open a .csv, either using open(...) or using Multiple File Import. MFI is fast and has fewer options and makes no guesses. Open(...) has options, and the guessing can make it slower. Both MFI and open can be scripted or used from the menu. (As I recall, MFI will import the dates as character and you can convert them after the import.)
The file->open support for .csv files will try to guess the m/d/y vs d/m/y format but will always guess m/d/y if there are no days bigger than 12 (your example data only has days <= 12.) The CSV wizard will let you specify a format, and you can look at an imported table's source script to see how it works. The guessing behavior is only useful for one-off imports. An explicit format should be used in a production script, not the guess, and not a preference.
Open(
"$DESKTOP/date.csv",
columns(
New Column( "date",
Numeric,
"Continuous",
Format( "d/m/y", 10 ),
Input Format( "d/m/y" )
)
),
Import Settings(
End Of Line( CRLF, CR, LF ),
End Of Field( Comma, CSV( 0 ) ),
Strip Quotes( 1 ),
Use Apostrophe as Quotation Mark( 0 ),
Use Regional Settings( 0 ),
Scan Whole File( 1 ),
Treat empty columns as numeric( 0 ),
CompressNumericColumns( 0 ),
CompressCharacterColumns( 0 ),
CompressAllowListCheck( 0 ),
Labels( 1 ),
Column Names Start( 1 ),
First Named Column( 1 ),
Data Starts( 2 ),
Lines To Read( "All" ),
Year Rule( "20xx" )
)
)
Desktop\date.csv like this has an ambiguous date which the script above will interpret as d/m/y for both input and display.
date
2/3/2000
The resulting table looks like
Also showing the column info dialog.
Here's how the import wizard chooses the date format
Craige