Experimente esta função definida pelo usuário:
Public Function parens(t As String) As String
Dim i As Long, L As Long, CH As String
Dim x As String, y As String, temp As String
Dim ary() As String, Kapture As Boolean, a As Variant
Dim j As Long
parens = ""
L = Len(t)
x = "("
y = ")"
Kapture = False
temp = ""
j = 1
For i = 1 To L
CH = Mid(t, i, 1)
If CH = x Then
Kapture = True
temp = ""
ReDim Preserve ary(1 To j)
j = j + 1
ElseIf CH = y Then
ary(UBound(ary)) = temp
Else
If Kapture Then temp = temp & CH
End If
Next i
For Each a In ary
If IsNumeric(a) Then
parens = a
Exit Function
End If
Next a
End Function
Eleextraimaterialentreparêntesesatéencontrarumvalornumérico.
FunçõesDefinidaspeloUsuário(UDFs)sãomuitofáceisdeinstalareusar:
- ALT-F11exibeajaneladoVBE
- ALT-IALT-Mabreumnovomódulo
- coleomaterialefecheajaneladoVBE
Sevocêsalvarapastadetrabalho,aUDFserásalvacomela.SevocêestiverusandoumaversãodoExcelposteriora2003,deverásalvaroarquivocomo.xlsmemvezde.xlsx
PararemoveroUDF:
- abrirajaneladoVBEcomoacima
- limpeocódigo
- fecheajaneladoVBE
ParausaroUDFdoExcel:
=parens(A1)
Parasabermaissobremacrosemgeral,consulte:
e
e para detalhes sobre UDFs, consulte:
As macros devem estar ativadas para que isso funcione!