Is it possible to have a formula that sums a range of cells in a column (based on a column of a ranged cell).
Example:
Cell G1 contains the range name “rngOne”
The formula should end up being something like: SUM(Cells(4,column(rngOne), Cells(10, column(rngOne))
The obvious would be to make the formula = SUM(G4:G10) but I’m trying to pass the column of the range named “rngOne” into the formula.
John