Extracting info from a string using VBA plz
Why VBA? This formula should do what you need. It assumes the text is in Cell
A1
=VALUE(MID(A1,FIND("(",A1)+1,FIND(")",A1)-FIND("(",A1)-1))
--
HTH...
Jim Thomlinson
"Patrick" wrote:
Hello everyone!!
Need to create a custum function in Excel that will allow me to extra
a series of numbers from a string.
The string will have a fix format, so this should facilitate the process.
The numbers im looking for are always going to be serounded by brakets.
Ex: test(234)test2
From this example and using the brakets as guidlines, what type of code would
be able to extract the '234' number.
Thx for your hlp,
Patrick
|