Here is a little script that will create a new numeric date/time column converting your StartTime column values.
Names Default To Here( 1 );
dt = Current Data Table();
dt << New Column( "StartTime2",
set each value(
Informat( Word( 1, :StartTime, "+" ), "yyy/mm/ddThh:mm:ss" )
),
Format( "m/d/y h:m:s" )
);
![txnelson_0-1714191846052.png txnelson_0-1714191846052.png](https://community.jmp.com/t5/image/serverpage/image-id/63752i8BE3E7FAEAFFBA7D/image-dimensions/578x321?v=v2)
Jim