I need just the time from a modified date column I titled "Ticket closed (24h Format)" and I'm having trouble extracting it into the column titled "Ticket closed time." Here's a screenshot. I've tried using the following formulas as well:
Formulas:
=LEFT([Ticket closed (24h Format)]@row - DATEONLY([Ticket closed (24h Format)]@row), 5)
=HOUR([Ticket closed (24h Format)]@row) + ":" + IF(LEN(MINUTE([Ticket closed (24h Format)]@row)) = 1, "0" + MINUTE([Ticket closed (24h Format)]@row), MINUTE([Ticket closed (24h Format)]@row))
=HOUR([Ticket closed (24h Format)]@row) + ":" + IF(LEN(MINUTE([Ticket closed (24h Format)]@row)) = 1, "0" + "" + MINUTE([Ticket closed (24h Format)]@row), MINUTE([Ticket closed (24h Format)]@row))