What is a formula that can extract just the time in HH:MM (24hr time) from a "modified date" column.
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))
Answers
-
Try this:
=TIME(RIGHT([Ticket Closed]@row, 8), 1)
-
Thank you so much, That worked perfectly
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!