Hi there,
I have a time stamp in column B and a speed in column C. However the first few seconds are always missed in the recording so the first speed value is usually 20 km/hr or above. This is an example
I'm looking for a macro that will insert 5 rows before this and will linearly insert speed values from 0 what ever the speed value is. So it would look like this
Any ideas?
Thank you
I have a time stamp in column B and a speed in column C. However the first few seconds are always missed in the recording so the first speed value is usually 20 km/hr or above. This is an example
Code:
Date/time Speed(km/h)
24/01/2011 08:04:29 25
I'm looking for a macro that will insert 5 rows before this and will linearly insert speed values from 0 what ever the speed value is. So it would look like this
Code:
Date/time Speed(km/h)
24/01/2011 08:04:24 0
24/01/2011 08:04:25 5
24/01/2011 08:04:26 10
24/01/2011 08:04:27 15
24/01/2011 08:04:28 20
24/01/2011 08:04:29 25
Any ideas?
Thank you