Hi,
I have a column which has multiple dates in each field as its populated from an outside software which integrates to smartsheet.
The column is named "Contract First Day" and see the image how it populates multiple dates.
I then have a formula in hte "Fill in last day" column which extracts the last date in the 'Contract First Day' column. the formula i use is :
=IF(CONTAINS(",", [Contract First Day]@row), RIGHT([Contract First Day]@row, LEN([Contract First Day]@row) - FIND("@cell", SUBSTITUTE([Contract First Day]@row, ",", "@cell", LEN([Contract First Day]@row) - LEN(SUBSTITUTE([Contract First Day]@row, ",", ""))))), [Contract First Day]@row)
The issue im facing is that while the "fill in last day " column is formatted as a date column, it doesnt seem to be converting it correctly to a date in the format of mm/dd/yy. it doest recognize it as a date when i run any filters
Please advise how to fix this so the fill in last day is recognized as a date.