Private Sub Worksheet_FollowHyperlink(ByVal h As Hyperlink)
If Left(Mid(h.Address, InStrRev(h.Address, ".") + 1), 3) <> "doc" Then Exit Sub
With GetObject(, "Word.Application")
.ActiveDocument.PrintPreview 'pour tester
'.ActiveDocument.PrintOut 'pour imprimer
End With
End Sub