我需要知道在这种情况下使用什么代码。
我在 vba 中使用 vlookup 来定位某个记录号。然后我需要知道记录所在的行号。我尝试了以下方法,但收到错误:
nRowSavedRecord = [Vlookup(Cells(nRows, nColRecNmbr),Range("RecordInfo"),2,False).Row]
这给了我一个“ Type Mismatch
”错误。
或者
nRowSavedRecord = Application.vlookup(cells(nRows, nColRecNmbr), Range("RecordInfo"),2,False).Rows
这给了我一个“ Object Required
”错误。
我敢肯定,我所缺少的一切都很简单。
(nRowSavedRecord
是一个Long
)有人可以帮忙吗?
谢谢!