Sub ouvrirdoc()
Set WordApp = CreateObject("word.Application")
fich = Worksheets("Recherche Famille").Cells(4, 7)
ext = Worksheets("Recherche Famille").Cells(4, 8) (Est ce que je dois mettre en dur dans cette cellule "Docx")
WordApp.Visible = True
WordApp.Documents.Open "C:\Users\Thierry\Documents\IP en Cours evaluations\" & fich & ext
Application.WindowState = xlMinimized
End Sub