If yes, you're able to use macros, then use this.
1) Right-click on the sheet-tab name and select VIEW CODE
2) Paste this sheet-event macro into the window that appears:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim cell As Range
For Each cell In Target
If Not Intersect(cell, Range("C:C")) Is Nothing Then _
If IsNumeric(cell) Then _
cell.Offset(0, 1).Value = cell.Offset(0, 1).Value + cell
Next cell
End Sub
3) Close the editor
4) Save your sheet as a macro-enabled workbook (*.xlsm)
Now make an entry in column C and the column D value will increment. There will be no formulas in column D when the macro has run once on every row.
Bookmarks