Sub CpyData()
If ActiveSheet.Name <> "Calculateur de taxes" Then Exit Sub
If [C6] = "" Then Exit Sub 'si C6 est vide : y'a rien à copier/coller
Dim lig&: Application.ScreenUpdating = 0
With Worksheets("Données")
lig = .Cells(Rows.Count, 2).End(3).Row + 1
[C6].Resize(, 7).Copy: .Cells(lig, 2).PasteSpecial -4163
Application.CutCopyMode = 0: .Cells(lig, 9) = [G14]
.Select: [A1].Select
End With
End Sub