I have a text column that says the following: 09/2022
I would like to turn this into a date for the last day of the month, like this: 09/30/2022
This is what the AI generated formula gave me:
=DATE(YEAR(VALUE([Delayed Result Date]@row)), MONTH(VALUE([Delayed Result Date]@row)) + 1, 0)
I'm getting a #INVALID VALUE error
The column I'm attempting to populate is a date column.
I DO have a formula that will turn the 09/2022 into 09/20/22 (I'll paste it below), *which is close*, but I really need it to be the last day of the month as this is a legal due date I'm tracking.
=IFERROR(DATE(VALUE(RIGHT([Delayed Result Date]@row, 4)), VALUE(LEFT([Delayed Result Date]@row, 2)), VALUE(MID([Delayed Result Date]@row, FIND("/", [Delayed Result Date]@row) + 1, 2))), [Delayed Result Date]@row)
Can anyone either assist me with the AI generated formula or tweak the formula that is about 10 days off?
Thank you!
Meredith