If your formulas in Google Sheets are disappearing when you add new rows, there are a few possible solutions:
Make sure that your formula is using absolute cell references (e.g. $A$1) instead of relative cell references (e.g. A1). Absolute cell references will not change when you add new rows, whereas relative cell references will.
Use the Fill Handle to copy your formula down to the new rows. To do this, select the cell with the formula and hover your cursor over the bottom right corner of the cell until you see a small plus sign. Click and hold, and then drag the formula down to the desired number of rows.
Alternatively, you can use the ARRAYFORMULA function to automatically apply a formula to a range of cells. For example:
=ARRAYFORMULA(A1:A10*B1:B10)will apply the formulaA1*B1to the rangeA1:B10.
Comments
Post a Comment