为什么在使用vlookup for int type时出现错误

时间:2018-02-07 05:49:03

标签: excel vba excel-vba

我需要在EXCEL的VBA中使用vlookup模块 所以我使用" Application.vlookup"

但是在使用vlookup进行 int type

的情况下会出现错误

如果使用' vlookup'作为EXCEL的基本功能, 没有错误。

但是当我使用" Application.vlookup"在EXCEL的VBA中

请注意捕获。

enter image description here

我真的想知道如何解决这个问题

1 个答案:

答案 0 :(得分:0)

正如@Tim Williams在评论中提到的,问题是您的范围是C6:D12,而您的数据是C4:D10

在VBA中,写作:

Range(Range("C" & 6), Range("D" & 12))

你可以简单地写Range("C6:D12"),它是100%相同的,并且真的可以理解。

MSDN - refer to Cells and Ranges