Google电子表格:拖动时增加公式中的特定数字

时间:2016-04-04 14:07:42

标签: excel formula spreadsheet

对于我的工作,我需要创建一个包含多个公式的电子表格。

现在一切都很顺利,但我遇到了以下问题。

我有A栏,使用以下公式:

=ALS(Anchors!$P$5 = 1; "x"; "")

细胞A2:A6都需要这个公式,但接下来的5个细胞,所以A7:12需要

=ALS(Anchors!$P$5 = 2; "x"; "")

所以每5个单元格= 1递增1。

我尝试选择10个细胞,使用2个公式并抓住它们,但这没有用。

PS。 = ALS是= IF

的荷兰语

1 个答案:

答案 0 :(得分:0)

I don't think you can do it directly by pulling down, but you could do a calculation based on the row like (the Dutch equivalent of) this:-

=IF(Anchors!$P$5=INT((ROWS(A$1:A1)+4)/5),"x","")