gpt4 book ai didi

vba - Excel VBA : How to solve Run-time error '91' ?

转载 作者:行者123 更新时间:2023-12-04 21:20:29 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Keep getting Error 91 with Excel Find function

(1 个回答)


3年前关闭。




我得到错误:
Run-time error '91': Object variable or With block variable not set
当我尝试执行此代码时:

MsgBox Worksheets("Sheet2").Range("2:2").Find(Worksheets("Sheet1").Range("E5").Value, , , xlWhole)

为什么?这一行有什么问题?

编辑

如果我正在管理文本或数字,则该代码有效。但我有这个问题 日期 Worksheets("Sheet1").Range("E5")Worksheets("Sheet2").Range("2:2") .

最佳答案

分配 result到一个范围并使用 .Find()设置范围。
如果没有找到,那么 Range()将是 Nothing :

Sub TestMe()

Dim result As Range

With Worksheets(1)
Set result = .Range("2:2").Find("Something", LookAt:=xlWhole)
End With

If Not result Is Nothing Then
Debug.Print result.Address
Else
Debug.Print "Something is not on the second row!"
End If

End Sub
LookAt:=xlWhole如果使用日期,参数是必须的:
  • Range.Find not making a difference between January and November (February and December) in VBA Excel
  • Excel.Range.Find Documentation
  • 关于vba - Excel VBA : How to solve Run-time error '91' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52504282/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com