I'm currently stuck on how to evaluate part of a regex expression. I want to use the pattern matches to reference an external workbook and pull the value. Do you know how to do that. Here is my current code, which is a mess since I'm in the middle of writing it:
Sub remove_ext_refs()
Dim wb As Workbook
Set wb = ActiveWorkbook
wb.SaveAs wb.Path & "\FL Exhibit B V3.xlsx", xlOpenXMLWorkbook
For Each link In wb.LinkSources
On Error Resume Next
Workbooks.Open link
On Error GoTo 0
Name = Mid(link, InStrRev(link, "\") + 1, 100)
With CreateObject("VBScript.RegExp")
.Global = True
Name = "Premiums, Policy Counts, Claims Amounts.xlsx"
.Pattern = "('?\[" & Name & "\]([^!']+)'?!([0-9A-Z:$]+))"
test = "='[Premiums, Policy Counts, Claims Amounts.xlsx]Earn Prem'!$B12"
Debug.Print Evaluate(test)
test2 = .Evaluate("$1")
Debug.Print .Replace(test, "$1")
Debug.Print .Replace(test, Workbooks(Name).Sheets("$1").Range("$2").Value)
Range("error").Value = True
For Each sht In wb.Sheets
sht.UsedRange.Formula = .Replace(sht.UsedRange.Formula, Workbooks(Name).Sheets("$2").Range("$3").Value)
Next sht
End With
Next link
End Sub
Bookmarks