I know how to make a named range in excel.
I have a spreadsheet with various columns going through the parameters, and then finally the formula in the last cell. This is repeated many times in each row, with each row having a different set of data, and the formula is updated to refer to the correct row index.
however, the formula looks like (3 lines):
=G2*(10*D2 + 20*E2 + 5*F2)
=G3*(10*D3 + 20*E3 + 5*F3)
=G4*(10*D4 + 20*E4 + 5*F4)
I would like to use named ranges, but I cannot find a way to do something like
=Count * (10*var1 + 20*var2 + 5*var3)
where count, var1, var2 and var3 are automatically updated to be the specific column of the current row. I can create a named range for each cell, but this is not useful. I can name the range of the column, but then I cannot find a way to put the offset in the formula.
, , , - , , , .