Sub absmaps()
Dim sRpl As String
Set oRng = ActiveDocument.Range
MsgBox "This macro will work for you in adding the full name reference you
need to the clipboard and than paste it at your insertion point"
sRpl = "American Bible Society Maps"
With oRng.Find
.Text = ""
With .Replacement
.Text = sRpl
End With
End Sub
Just want to insert that text but my macro must be wrong please correct it,
thanks

Signature
XP home , Office 97
any or all responses are gratefully accepted and thank you for your time
David - 15 Dec 2004 20:22 GMT
Sub absmaps()
Dim sRpl As String
sRpl = "American Bible Society Maps"
Selection.InsertAfter sRpl
End Sub