surfbum3000
Technical User
I have a table with 2 fields representing time, data type text. Sometimes data in the StartTime column is 5 digits with other entries 6 digits. I would like to update the fields to reflect a standard time format HH:MM
StartTime EndTime
80000 81500
100000 110000
Tried UPDATE tblReservedTimeNWCSC SET StartTime = Left([StartTime],4), EndTime = Left([EndTime],4);
But it only works when there are 6 digits.
StartTime EndTime
80000 81500
100000 110000
Tried UPDATE tblReservedTimeNWCSC SET StartTime = Left([StartTime],4), EndTime = Left([EndTime],4);
But it only works when there are 6 digits.