Create two extra columns in your table, then create routine that does this:
Open Recordset on current table (SELECT * FROM MyTable)
rs.MoveFirst
Do Until rs.EOF
ReDim MyArray(2)
MyArray = Split(rs("TimeColumn"), "/")
rs("NewTimeColumn") = MyArray(0)
rs("ChannelColumn") = MyArray(1)
rs.Update
rs.MoveNext
Loop
This will loop through your current table and put the values in the new columns and preserver the old column.
Did that help?
mmcdonal
Look it up at:
http://wrox.books24x7.com