I have a CSV file that I have imported using VBA. One column contains strings containing the elapsed time (timestamp of the collected data). I will need to perform various operations using these times, so I need to convert them to valid Excel Date-formatted values. Here are the relevant parts of my code:
I am getting type-mismatch error. The problem seems to be that my time string looks like this:![]()
Please Login or Register to view this content.
"00:00:01:21:992"
DD:HH:MM:SS:milliseconds
rather than this:
"18:30:12"
HH:MM:SS
is there any easy way to get VBA to understand that I have "extra" columns containing the Day and Millisecond information?
Bookmarks