我目前有一个数据集,我使用countifs和offset来更改列引用,因为我下拉公式。
这是我的公式:
=COUNTIFS('Student Survey (Middle)'!B:B,'Middle Master'!A2,OFFSET('Student Survey (Middle)'!G:G,0,ROW()-4,1240,1),"agree")
知道为什么会返回#Value?
答案 0 :(得分:1)
我会摆脱不稳定的OFFSET并使用:
=COUNTIFS('Student Survey (Middle)'!B:B,'Middle Master'!A2,INDEX('Student Survey (Middle)'!G:XCC,0,ROW()-3),"agree")