公式抛出无效引用

Formulas Throw Invalid Reference

我有一个工作表,上面有超过 1000 行,我想获取包含大约 600 行的第二个工作表中存在的 ID 的列表。我尝试使用 VLOOKUP()IF()COUNTIF() 函数,但每个函数都给我一个错误

Invalid reference.
This file version can only have formulas that reference cells within a worksheet size of 256 columns (column IW or higher) or 65536 rows.

我需要做什么才能比较这两个列表?

VLookup() 我用了 = =VLOOKUP(A3,[Book1]Sheet1!$A:$K,2,false)
CountIF() 我用了 = =COUNTIF([Book1]Sheet1!$A:$A,D1)

正如评论中所讨论的,最新版本的问题是关于在兼容模式下工作的公式。有 more/less 行可用会引发此类错误。

您在 excel 2013 年使用 .xls 文件吗?如果您切换到在 .xlsx 文件中工作,它可能会正常工作。