My strings are filenames like this:
Sample Text (A12 V1.1)
Sample (V2) Text (A9 V2.3 8.99)
Sample Very Text (A34 8.3 V4)
How do I extract only the string starting with but excluding the 'V', contained within the last brackets only?
i.e. - 1.1, 2.3, 4
VBA's string functions can duplicate the results from a static pattern and you might want to return a true number if you are dropping the V prefix.
Try this UDF
Update
Here's another version in which you can format the output