Quote Originally Posted by akhileshbc View Post
This is the code that I use for finding the total of all elapsed time, which's stored in a String Array. Do you have any ideas/suggestions on improving this one ?

Example data in the string array:
00:25:01
05:13:00
01:56:19
01:30:33
Suggestions? Consider using a Date array vs string array. Not only will you be able to use the DateDiff function more easily, you are actually saving memory too: Date variable = 8 bytes each; your 8-char string = 22 bytes each