I’m working with formulas in Google Sheets and running into an issue. When I create a formula like =sum(C3*D8) and then drag it down to copy the formula to other cells, both cell references automatically update. So I get =sum(C4*D9), =sum(C5*D10), and so on.
The problem is that I want only the first reference (C3, C4, C5) to change as I drag down, but I need the second reference (D8) to stay the same in all formulas. Is there a way to lock one part of the formula so it doesn’t change when I copy it down? I tried different approaches but can’t figure out the right syntax to make one cell reference stay fixed while allowing the other to update normally.