Have code below which will convert times in col A to time in col B
Both columns are formatted as hh:mm
All the times in col A are 0:01 all the way up to 13:00
Not sure if a bug or not but most of the times convert ok but some don't
I.e. did notice exactly 1:12 between each gap apart from 1st one 0:36 to 01:12
00:36 00:25
01:12 00:05
02:24 00:01
03:36 00:15
04:48 00:02
06:00 00:25
07:12 00:03
08:24 00:35
09:36 00:04
10:48 00:45
12:00 00:05
Both columns are formatted as hh:mm
All the times in col A are 0:01 all the way up to 13:00
VBA Code:
Dim x as integer
On error resume next ' in case the times in col A are actual times and not text
For x = 2 to 781
Range("B" & x) = timevalue(range("A) & x))
Next x
Not sure if a bug or not but most of the times convert ok but some don't
I.e. did notice exactly 1:12 between each gap apart from 1st one 0:36 to 01:12
00:36 00:25
01:12 00:05
02:24 00:01
03:36 00:15
04:48 00:02
06:00 00:25
07:12 00:03
08:24 00:35
09:36 00:04
10:48 00:45
12:00 00:05