I have a formula date column that converts string date information to a date. However, Smartsheet does not recognize the result of the formula as a date.
Original string example in column labeled SUG Class Date: 2023-07-11T14:00:00.000Z
Formula: =LEFT(REPLACE([SUG Class Date]@row, 1, 5, ""), 2) + "/" + LEFT(REPLACE([SUG Class Date]@row, 1, 8, ""), 2) + "/" + LEFT(REPLACE([SUG Class Date]@row, 1, 2, ""), 2)
Formula result: 07/11/23
Also, I tried nesting left & replace within the date function (year, month, day) but get an invalid data type error. Here's a copy of that formula: =DATE(LEFT([SUG Class Date]@row, 4), LEFT(REPLACE([SUG Class Date]@row, 1, 5, ""), 2), LEFT(REPLACE([SUG Class Date]@row, 1, 8, ""), 2))
I know the result isn't recognized as a date because when I click on "Restrict to date only" in the formula column I get an warning that some rows contain non-date values.
Please help!