I have a column of data in the form mm:ss (minutes, seconds) which I want to copy into Excel, but Excel interprets this as HH:mm which means any times over 24 minutes are represented as DD/MM/YYYY HH:mm in Time format.
Presumably there's an easy way to tell Excel the correct format of the data you're importing but I don't know what it is. Can anyone help?
[hh]:mm:ss
Longer fix is to have the data that being imported changed to add the00:
for hours. After that it is a matter of writing code that divides the time by 60 to get the correct time reference. – Scott Craner