Я пытаюсь установить значение для возвращаемого значения другой функции, но я застреваю в этой строке:
Set tempMergeValue = TypeRegxFunc(MyRange.Rows(iCounter).Columns(1).Value,'([^.]+)')
TypeRegxFunc здесь
Function TypeRegxFunc(strInput As String, regexPattern As String) As String
Dim regEx As New RegExp
With regEx
.Global = True
.MultiLine = True
.IgnoreCase = False
.Pattern = regexPattern
End With
If regEx.Test(strInput) Then
Set matches = regEx.Execute(strInput)
TypeRegxFunc = matches(0).Value
Else
TypeRegxFunc = "not matched"
End If
End Function