Forum Discussion
Roger_Penny
Jul 07, 2022Copper Contributor
Common Multiplier for Each Column while multiplying from a different column
I am trying to rebuild my price Structure for my products. I have a cost in the first row and need it to follow one column all the way to the bottom of the structure. What is happening is the cells a...
Riny_van_Eekelen
Jul 07, 2022Platinum Contributor
Roger_Penny You need to fix the reference to D1 but putting $ signs before both the column and row identifier. The formula would then look like this:
=$D$1*C2
Copy this one all the way down and you'll note the D1 is fixed and that C2 becomes C3, C4 etc.
Learn more about relative and absolute cell references in the article linked to below.
Alternatively, give cell D1 a name in the Name Manager or by typing it directly in the Name Box (in the top left just above the grid where it says D1 when you have selected that cell. Just type UnitCost in that box and press enter. Now you can use that name in a formula like this:
=UnitCost*C2