Sub Copie()
Dim Wbk As Workbook, Plage As Range
Application.ScreenUpdating = False
Application.EnableEvents = False
Set Wbk = GetObject(ThisWorkbook.Path & "\Copie 2020.xlsm")
Application.EnableEvents = True
With Sheets("BDD")
.Cells.AutoFilter 1, "à facturer"
Set Plage = .AutoFilter.Range
End With
With Wbk.Sheets("BDD")
.Cells.ClearContents
Plage.Copy .[A1]
End With
Wbk.Close True
Cells.AutoFilter
Application.ScreenUpdating = True
End Sub