I have a column with some stuff that looks like the following string: V2397(+60)
V2397(+60)
How do I get the value between the brackets? In this case the +60
+60
Use InStr to get the index of the open bracket character and of the close bracket character; then use Mid to retrieve the desired substring.
InStr
Mid
Using InStr$ and Mid$ will perform better, if the parameters are not variants.
InStr$
Mid$