In addition to Spyros answer there is also the possibility of using the "Parse Date"/"In Format" function
Date and Time Functions
or directly Writing writing the datetime.
Using dates, times, datetimes and durations in JMP
Names Default To Here( 1 );
way1 = Parse Date( "2025-10-30", "YYYY-MM-DD" );
way2 = 1Nov2025:12:30:25;
Show( way1, way2, way1 < way2 );
way1 = 30Oct2025;
way2 = 01Nov2025:12:30:25;
way1 < way2 = 1;
Kasper