Again, I need some help. I have declared the last Column of a worksheet and want to use the value of it create a formula that is pasted into the worksheet. The goal of it is, that it puts in a formula that sums up the 2 cells above it and that i automatically updates in the spreadsheet if I enter different numbers above manually.
wsDATA.Cells(16, wsDATALcol + 1).Formula = "= cells(14, wsDATAlcol.value+1) + cells(15, wsDATALcol + 1)" I have tried to use different methods, including =SUM(Range(...) and using .FormulaR1C1, but I am stuck.
A quick hint would be highly appreciated.