this is simple demo of what i want to do. I want to set a formula to a range of cells(eg. C1 to C10).
Range(\"C1\").Formula = \"=A1+B1\"
bu
I think this is the simplest answer possible: 2 lines and very comprehensible. It emulates the functionality of dragging a formula written in a cell across a range of cells.
Range("C1").Formula = "=A1+B1" Range("C1:C10").FillDown