E
Ed
I want to pick up times from a document in the form of hh:mm and write them
into an array. As the array loops, the next time will be added to the
previous array value. In simulated code:
For x = 1 To 6
Time = MyRange.Text
aryTime(x) = Time + aryTime(x)
Next x
How do I format Time so it becomes a value I can add? What is the correct
way to add times within code?
Ed
into an array. As the array loops, the next time will be added to the
previous array value. In simulated code:
For x = 1 To 6
Time = MyRange.Text
aryTime(x) = Time + aryTime(x)
Next x
How do I format Time so it becomes a value I can add? What is the correct
way to add times within code?
Ed