Data is:
A1 = 29. B1 = 30. C1 = 2. D1 = TIME(A1, B1, C1).
How can I get D1 to return 29:30:02?
29:30:02
Formatting the D1 cell to
Time is trying to give you clock time so 29hrs=5am. So if you want that result how about just:
D1=CONCATENATE(A1,":",B1,":",C1)
If then you want the 02 you would have to interject a little formatting to those columns...