I have a specific text string that I am trying to return the value for from within a column of data. I want to return the date portion of the text string for the second occurrence of the text string.
For example, the text string begins with "As of" and ends with a date. I.e. "As of 05/06/2024".
There are numerous text strings like this within the column (i.e. first instance might be "As of 07/01/2024" in row 1, second instance "As of "09/15/2024" in a later row), and I want to return the second instance when the string begins with "As of".
The return value needs to be just the date portion of the string, i.e. 09/15/2024.
For example, the text string begins with "As of" and ends with a date. I.e. "As of 05/06/2024".
There are numerous text strings like this within the column (i.e. first instance might be "As of 07/01/2024" in row 1, second instance "As of "09/15/2024" in a later row), and I want to return the second instance when the string begins with "As of".
The return value needs to be just the date portion of the string, i.e. 09/15/2024.