I have a document with data in column A (about 5000 rows).
They look like this
This is a great day (1234)
whats for dinner (23322)
What is your name (0989)
I want to extract the number in the brackets. I would have used text to columns with '(' and then ')' as the delimiter. But the problem is that the data is not very clean. There are records like this
I (am messing) up your parse (345352)
How (do) you feel about this (425112)
so a simple text to columns won't work. One thing is for sure about the data in column A, it always ends with the (324245) number. How can I extract just that number out. FYI number length is not always the same. sometimes its 6 digits, sometimes 7 digits, etc.
They look like this
This is a great day (1234)
whats for dinner (23322)
What is your name (0989)
I want to extract the number in the brackets. I would have used text to columns with '(' and then ')' as the delimiter. But the problem is that the data is not very clean. There are records like this
I (am messing) up your parse (345352)
How (do) you feel about this (425112)
so a simple text to columns won't work. One thing is for sure about the data in column A, it always ends with the (324245) number. How can I extract just that number out. FYI number length is not always the same. sometimes its 6 digits, sometimes 7 digits, etc.