I have a Character Col that all input value is in time, like hh:mm:ss (like 05:36:50), I would like to convert it to numeric, nominal type with a format of h:m.
The script I wrote for this request is listed below, but it does not work out as expected, can anyone give it a modify?
dt<<Current Data Table();
dt<< New Column("Time_Set",Numeric, Nominal, Format("h:m"));
dt<< Being data update;
For each row(:Time_Set=Num(":Time Added:"));
dt<< Move Selected Columns ({"Time_Set"},After("Time Added:"));