un autre exemple avec des variable,
Sub test2()
premièreLigne = 2
derniereLigne = Sheets("Feuil1").Cells(Rows.Count, 1).End(xlUp).Row
colonne = 5
ligne = 3
With Sheets("Feuil1")
.Cells(ligne, colonne + 1) = .Cells(ligne, colonne) / Application.Sum(.Range(Cells(premièreLigne, colonne), Cells(derniereLigne, colonne)))
End With
End Sub