查找“find”方法在 excel vba 中是否返回“nothing”[重复]

问题描述 投票:0回答:1

我正在尝试在列表中查找 id 并获取其地址,但也会处理找不到任何内容的情况。

这是我所拥有的:

Function find_in_two_ranges_two_sheets(ws1 As String, col1 As Integer) As Range

    Dim rows1 As Integer
    rows1 = Get_Rows_Generic(ws1, 1)
    Dim range1 As Range ' range of first search
    With Worksheets(ws1)
        Set range1 = .Range(.Cells(1, col1), .Cells(rows1, col1))
    End With

    Dim found1 As Range
    Set found1 = range1.Find("test id", LookIn:=xlValues)  

    If found1 = Nothing Then
        MsgBox "nothing"
    Else
        MsgBox found1.AddressLocal
    End If


    Set find_in_two_ranges_two_sheets = range1
End Function


Sub test_stuff()
    Dim x As Range
    Set x = find_in_two_ranges_two_sheets("usersFullOutput.csv", 1)
    MsgBox x.Address
End Sub

当我运行

test_stuff()
时,我在
If found1 = Nothing Then
行的函数中收到错误,并突出显示了
Nothing
一词。 “编译错误;对象使用无效”。不知道该怎么办。

excel vba find
1个回答
15
投票

要检查

range
对象,您需要使用
is
而不是
=
:

If found1 Is Nothing Then
    MsgBox "nothing"
Else
    MsgBox found1.AddressLocal
End If

说明:

取自艾伦·布朗

Nothing
是对象变量的未初始化状态。对象不能是数字或字符串等简单变量,因此它永远不能是 0 或“”。它必须是一个更全面的结构(文本框,表单,记录集,querydef,...)

由于它不是一个简单的值,因此您无法测试它是否等于某个值。 VBA 有一个您使用的

Is
关键字。

© www.soinside.com 2019 - 2024. All rights reserved.