How do you create columns that increase by milliseconds?

trietta

New Member
Joined
Jan 8, 2018
Messages
20
I need to create columns that increase in intervals of 33 milliseconds. So, the first column is 00:00:00. 2nd column is 00:00:33. 3rd column is 00:00:66. And so on until I reach 2 minutes.

Is there an easy way to do this in Excel?
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Easy? Potentially:

33 milliseconds in decimal form is 0.033 of a second.

A second in terms of a portion of a day is (1 Second/1 Minute/1 Hour/1 Day) or =1/60/60/24

So, 33 Milliseconds is

Code:
=0.033/60/60/24

Add that to your time and it'll increase by 33 milliseconds.
 
Upvote 0
Thanks! I tried that, but was unable to get it to display in the format I need and copy across the columns...
 
Upvote 0
in A6, I just manually typed the first value 0
Then in B6
=A6+"0:00:00.33"
And filled right.

Format the cells as hh:mm:ss.00


Cell Formulas
RangeFormula
B6=A6+"0:00:00.33"
C6=B6+"0:00:00.33"
D6=C6+"0:00:00.33"
E6=D6+"0:00:00.33"
 
Upvote 0
This looks promising.. But what am I doing wrong? I try to format the cells as hh:mm:ss:00 and I get an error message saying that Excel cannot use the number format I typed.



in A6, I just manually typed the first value 0
Then in B6
=A6+"0:00:00.33"
And filled right.

Format the cells as hh:mm:ss.00

ABCDE
600:00:00.0000:00:00.3300:00:00.6600:00:00.9900:00:01.32

<colgroup><col style="width: 25pxpx"><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B6=A6+"0:00:00.33"
C6=B6+"0:00:00.33"
D6=C6+"0:00:00.33"
E6=D6+"0:00:00.33"

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,870
Messages
6,122,021
Members
449,060
Latest member
LinusJE

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top