Fixing Links To UDFs in Addins
Processing The Newly Opened Workbook
Once the add-in has detected that the user opened a new workbook some action has to be taken.
First of all, we'll check all external links of the workbook to see if any point to a file who's name resembles our add-in. After that -to be on the safe side- we also check all formulas which use our UDF(s) and update them so they point to our add-in.
The code shown below is part of a "normal" module called modProcessWBOpen:
Sub ProcessNewBookOpened(oBk As Workbook)
'-------------------------------------------------------------------------
' Procedure : ProcessNewBookOpened
' Company : JKP Application Development Services (c) 2005
' Author : Jan Karel Pieterse
' Created : 2-6-2008
' Purpose : When a new workbook is opened, this sub will be run.
' Called from: clsAppEvents.App_Workbook_Open and ThisWorkbook.Workbook_Open
'-------------------------------------------------------------------------
'Sometimes OBk is nothing?
If oBk Is Nothing Then Exit Sub
If oBk Is ThisWorkbook Then Exit Sub
If oBk.IsInplace Then Exit Sub
CheckAndFixLinks oBk
ReplaceMyFunctions oBk
CountBooks
End Sub
Sub CheckAndFixLinks(oBook As Workbook)
'-------------------------------------------------------------------------
' Procedure : CheckAndFixLinks Created by Jan Karel Pieterse
' Company : JKP Application Development Services (c) 2008
' Author : Jan Karel Pieterse
' Created : 2-6-2008
' Purpose : Checks for links to addin and fixes them
' if they are not pointing to proper location
'-------------------------------------------------------------------------
Dim vLink As Variant
Dim vLinks As Variant
'Get all links
vLinks = oBook.LinkSources(xlExcelLinks)
'Check if we have any links, if not, exit
If IsEmpty(vLinks) Then Exit Sub
For Each vLink In vLinks
If vLink Like "*" & ThisWorkbook.Name Then
'We've found a link to our add-in, redirect it to
'its current location. Avoid prompts
Application.DisplayAlerts = False
oBook.ChangeLink vLink, ThisWorkbook.FullName, xlLinkTypeExcelLinks
Application.DisplayAlerts = True
End If
Next
On Error GoTo 0
End Sub
Private Sub ReplaceMyFunctions(oBk As Workbook)
'-------------------------------------------------------------------------
' Procedure : ReplaceMyFunctions Created by Jan Karel Pieterse
' Company : JKP Application Development Services (c) 2008
' Author : Jan Karel Pieterse
' Created : 2-6-2008
' Purpose : Ensures My functions point to this addin
'-------------------------------------------------------------------------
Dim oSh As Worksheet
Dim oFirstFound As Range
Dim oFound As Range
On Error Resume Next
'Search through all sheets looking for the UDF "UDFDemo("
For Each oSh In oBk.Worksheets
Set oFirstFound = _
oSh.UsedRange.Cells.Find(what:="UDFDemo(", after:=oSh.UsedRange.Cells(1, 1), _
LookIn:=xlFormulas, LookAt:=xlPart, _
SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)
If Not oFirstFound Is Nothing Then
'Found one, change the formula (prepend with path to me)
'We assume the function is on its own, NOT nested inside another!!!
oFirstFound.Formula = "='" & ThisWorkbook.FullName & "'!" & _
Right(oFirstFound.Formula, _
Len(oFirstFound.Formula) - _
InStr(oFirstFound.Formula, "My(") + 1)
Set oFound = oFirstFound
Do
Set oFound = _
oSh.UsedRange.Cells.Find(what:="UDFDemo(", after:=oFound, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, _
SearchDirection:=xlNext, MatchCase:=False)
If Not oFound Is Nothing Then
'We assume the function is on its own, NOT nested inside another!!!
oFound.Formula = "='" & ThisWorkbook.FullName & "'!" & _
Right(oFound.Formula, Len(oFound.Formula) - _
InStr(oFound.Formula, "My(") + 1)
End If
Loop Until oFound Is Nothing Or oFound.Address = oFirstFound.Address
End If
Next
End Sub
Check out the comments in the code to find out what is going on.
Well, that should be all there is to it, right? Not so. Sometimes when one double clicks a file in Explorer, Excel has already opened that file BEFORE your add-in is fully loaded and initialised.
Next: How to handle workbooks opened from Explorer.






Rate this article
(Rated: 27 times, average rating: 5.3)Comments
Add a comment too!!!
Please enter your comments about this tool below.