Sub Total_colonnes()
With Sheets("filtre")
FinLigne = .UsedRange.Rows.Count
fincolonne = .UsedRange.Columns.Count
Cells(FinLigne + 1, "A") = "Total : "
For col = 2 To 3
Cells(FinLigne + 1, col) = Format(Application.WorksheetFunction.Sum(.Range(.Cells(2, col), .Cells(FinLigne, col))), "0.00")
Next
End With
End Sub