I created a userform and inserted labels that I underlined to give the appearance of a hyperlink.
Behind each label i placed the necessary code to open the word document, rather than hyperlinking.
Additional code ensured that the mail merge function was made "live" as such
Private Sub Label1_Click()
Dim wdApp As Word.Application
Dim WordWasNotRunning As Boolean
Dim wdDoc As Word.Document
'Get existing instance of Word if it's open; otherwise create a new one
On Error Resume Next
Set wdApp = GetObject(, "Word.Application")
If Err Then
Set wdApp = New Word.Application
WordWasNotRunning = True
End If
wdApp.Visible = True
wdApp.Activate
Dim t
t = "template name.dot"
Set wdDoc = wdApp.Documents.Open("C:\Documents and Settings\user\Desktop\myFolder\Fails To Attend")
wdDoc.Activate
ActiveDocument.MailMerge.MainDocumentType = wdFormLetters
ActiveDocument.MailMerge.OpenDataSource Name:= _
"C:\Documents and Settings\user\Desktop\my Folder\list.xls", _
ConfirmConversions:=False, ReadOnly:=False, LinkToSource:=True, _
AddToRecentFiles:=False, PasswordDocument:="", PasswordTemplate:="", _
WritePasswordDocument:="", WritePasswordTemplate:="", Revert:=False, _
Format:=wdOpenFormatAuto, Connection:= _
"Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=C:\Documents and Settings\user\Desktop\myFolder\list.xls;Mode=Read;Extended Properties=""HDR=YES;IMEX=1;"";Jet OLEDB:System database="""";Jet OLEDB:Registry Path="""";Jet OLEDB

at" _
, SQLStatement:="SELECT * FROM `AMF$_FilterDatabase`", SQLStatement1:="", _
SubType:=wdMergeSubTypeAccess
End Sub