Hi Community,
I'm looking for assistance with creating formulas in Smartsheet to separate a combined DateTime value into two distinct columns: one for the date and one for the time.
- "Date" Column: Contains both date and time values
- "Date Only" Column: Should display only the date
- "Time Only" Column: Should display only the time
Formulas I've attempted for "Date Only" :
=LEFT(Date@row , FIND("-", Date@row , FIND("-", Date@row ) + 1))
Brings back "Year and Month" only
=LEFT([Date]@row , FIND("-", [Date]@row , FIND("-", [Date]@row ) + 1, FIND("-", [Date]@row ) + 1))) #UNPARSEABLE
=LEFT([Date]@row , FIND("-", [Date]@row , FIND("-", [Date]@row ) + 1, FIND("-", [Date]@row ) + 2))) #UNPARSEABLE
Formulas I've attempted for "Time Only" :
=RIGHT(Date@row , FIND(":", Date@row , FIND(":", Date@row ) + 1))
Brings back "Date and Time"
Any guidance on the appropriate formulas to achieve this would be greatly appreciated. Thank you!
-AD😁