Good morning gurus!
I have a tricky one today. I need help retrieving data from a cell. The column (Routine Execution) contains information imported from another program and looks like this:
5S Audit - Jul 29, 2022, 04:01 PM
Gemba Checklist - July 13, 2022
I was able to pull the date from the above data using the following formula:
=IF(CONTAINS("5S", [Routine Execution]@row), RIGHT([Routine Execution]@row, (LEN([Routine Execution]@row) - 11)), RIGHT([Routine Execution]@row, (LEN([Routine Execution]@row) - 19)))
That gives me the "date" portion of the cell. I need to break down the month and year using helper columns. But using MONTH gives me an INVALID DATA TYPE error. So does pretty much any other formula I have tried. This error exists if the column is a Text/Number or a Date format.
Does anyone have any ideas? @Paul Newcome and @Andrée Starå your advice has never failed me--here's hoping you can save me again! 😅