Today, I realised, that EXTRACTDATES() has changed its behavior in the last few days:
It cannot extract the Date from a simple text string with the Date in the format YYYY-MM.
Example: EXTRACTDATES(“Project - 2022-12 (Deadline)”) returns a blank list as of today whereas it used to return the 1st December 2022 as a single list element with base type Date
Anybody experiencing the same?
Is this now the new, behavior to be expected or can we consider this as an unexpected behavior that will be fixed soon?
You are perfectly right! Having removed the dash “-” characters from the string, the date is successfully extracted again, actually solving the issue in my very use case
Final formula to extract the date from the calendar event’s title:
Nice to know it works the way you want. Regarding other characters, it is difficult to mention right away. I think typically for such functions, we will need to know the expected pattern of text strings with all possible edge cases and come up with an expression that extracts for all possible data.
In summary, such expressions will be data pattern specific.