I need to manually input time data (hh:mm). To make the process quicker I want the cell to autocomplete when I hit enter. For example, when I type 7 in a cell, I want it to autocomplete to 7:00. Or if I type 7:3 it should autocorrect adding the 0 to the end making it 7:30. Is this possible?
I am currently using a custom date format dd/mm/yyyy and if I type 01/12/22, upon hitting enter, google sheets autocorrects the cell to fit the proper format 01/12/2022.
None of the provided autocomplete options will autocomplete/correct a custom time format. As far as I can figure out, the next step is using google scripts to program a custom format or autocomplete setting if that's even possible. Thanks guys

There isn’t a direct way to achieve that only using Sheets cell formats and relying on the “auto-fix” of values.
However using Apps scripts, you can certainly set up a logic to treat values whenever a certain range of cells is edited.
I’d recommend looking up the Simple Trigger
onEdit(e).onEdit(e)passes a contextual event objectewhich contains information about the range of cells being edited.With that information you can determine if the cell being edited is expecting a Time/DateTime value, parse the input to check if it should be “fixed” and push the “fixed” value to the cell.
Sample Implementation: