The fool proof way is to create an extra column with formula (replacing :time with the correct source column name):
in format(:time, "Format Pattern", "<DD></><MM></><YYYY> <hh24><:><mm>:<ss>")
and then set that new column to display in whatever format you prefer:
New Column( "Fixed time format",
Numeric,
"Continuous",
Format( "yyyy-mm-ddThh:mm:ss", 19, 0 ), //Change to whatever output format you like
Input Format( "yyyy-mm-ddThh:mm:ss", 0 ),
Formula(
Informat(
:Time,
"Format Pattern",
"<DD></><MM></><YYYY> <hh24><:><mm>:<ss>"
)
)
)
If you then remove the formula, you can deleter the orginial column afterwards:
:Fixed time format << Delete Formula;
current data table() << Delete Columns(:time);