Sub Copier_Word()
Dim Wapp As Object
On Error Resume Next
Set Wapp = GetObject(, "Word.Application")
If Wapp Is Nothing Then Set Wapp = CreateObject("Word.Application")
On Error GoTo 0
Wapp.Visible = True
With ActiveSheet
.Cells.Delete
With Wapp.Documents.Open(ThisWorkbook.Path & "\Facture.docx")
.Tables(1).Cell(2, 6).Range = Trim(.Tables(1).Cell(2, 6).Range)
.Tables(1).Cell(2, 6).Range.ParagraphFormat.Alignment = 1 'wdAlignParagraphCenter
.Content.Copy 'copier
End With
.[A1].Select
.Paste 'coller
.DrawingObjects.Delete
.Cells.WrapText = False
.Columns.AutoFit 'ajustement largeurs
.[A1].Select
End With
End Sub