How can I write the formula in the active cell? The active cell already has the formula: =+sum(i10:i195)-i197
I want to change this active cell formula to = sum(i10:I195)-i197+i196
I have the VBA code:
WorkSheets(1).range(“i10”).End(xlDown). Select
Selection. FormulaR1C1 = “selectiin -+ selection. Offset(-3,0)
But there’s no response. Does anyone have a suggestion on how to solve this?