excel VBA问题错误91 - Azure虚拟桌面

xmd2e60i  于 2022-11-26  发布在  其他
关注(0)|答案(1)|浏览(68)

我们在虚拟桌面中使用Excel报表。现在,我们正在Azure虚拟桌面中测试报表,出现一个Excel报表错误:

Cells.Find(What:="zzz", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
        xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
        , SearchFormat:=False).Activate

我没有太多的经验,所以我不知道我必须改变什么。我需要一些帮助:)提前谢谢你。

hxzsmxv2

hxzsmxv21#

只有在成功搜索后才能激活单元格。

Set result = Cells.Find(What:="zzz", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
    xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
    , SearchFormat:=False)
If result is Nothing Then
    MsgBox "Nothing found"
Else
    result.Activate
End If

相关问题