我发现插入新列时很难使用数组公式。当我移动列时,我想让它可以被整除。
实施例。 我已经在C列的Sheet1中使用了数组公式。如果我在C列之前添加一个新列,我希望我的公式应该更改为新列C /列B(之前是C)
Ex dataset with 2 column A and B
A has n values
B has n values
C=arrayformula(iferror(B/A-1,0))
If i insert new column before column C
C has n values
D=arrayformula(iferror(C/B-1,0))
答案 0 :(得分:0)
您可以使用此
的偏移量=ArrayFormula(IFERROR(OFFSET(C1:C, 0, -1) / OFFSET(C1:C, 0, -2) - 1, 0))