I have a field in a Google spreadsheet which will contain a valid timecode for film and tv. this is of the format 01:00:02:12 ie hours minutes seconds and frames.
I want to just be able to type as few digits as needed so 3 seconds would be 3 0 0 and then be validated and entered/formatted as 00:00:03:00
I have it working very simply from one column to the next eg
A1 I enter 300
A2 is set to =TEXT(A1 , "00:00:00:00") which of course displays 00:00:03:00
but I don't want extra columns so how can I make it such that when I exit a field after typing 300 it runs a validation that then replaces my 300 entry with 00:00:03:00 as needed?