I would create new column which removes minutes and seconds from your date time column. You can create it with quick formulas JMP provides you with but it will require few of them. First you can create Date column

Then create Hour column

And combine these

Next open the created column, change format and modify the formula by multiplying the hour by In Hours(1) (same as 60*60 which is seconds in hours, this is basically how JMP manages time). Final formula would look something like this
In Hours(:"Hour[Column 1]"n) + :"Date[Column 1]"n

You can of course do this all in single column by picking the formulas from Hour (remember to convert these into hours) and Date columns and combining them. The final formula would look something like this (not the only option):
:Column 1 - Time Of Day(:Column 1) + In Hours(Hour(:Column 1))
where :Column 1 is the date time column you have

You could also just deduct seconds and minutes (remember to convert these into seconds) from your date time and you should have similar result
:Column 1 - Second(:Column 1) - Minute(:Column 1)*60

One place to read more about date-time in JMP Using JMP > Reference for JMP Functions in Formulas > Date Time Functions
-Jarmo