Google电子表格动态列数组

时间:2018-01-02 10:16:46

标签: google-sheets

我发现插入新列时很难使用数组公式。当我移动列时,我想让它可以被整除。

实施例。 我已经在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))

https://docs.google.com/spreadsheets/d/1lzeVAk5fIZbSL5q0LKm7ZQKleS6tB31G8SIw2nGYhsU/edit#gid=743953923

1 个答案:

答案 0 :(得分:0)

您可以使用此

的偏移量
=ArrayFormula(IFERROR(OFFSET(C1:C, 0, -1) / OFFSET(C1:C, 0, -2) - 1, 0))