gpt4 book ai didi

将项目添加到 With...End With 时出现 excel 错误 91

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

当我在 Do/With 函数下添加一个项目时,我有一段代码会引发错误 91。 (感谢克里斯尼尔森的代码)

Dim ws As Worksheet
Dim SrchRng As Range
Dim SearchValues() As Variant
Dim cl As Range, addr As String
Dim i As Long

SearchValues = Array(217, 317, 298)

Set ws = ActiveSheet
With ws
Set SrchRng = Range(.Cells(1, 7), .Cells(.Rows.Count, 7).End(xlUp))
End With

For i = LBound(SearchValues) To UBound(SearchValues)

Set cl = SrchRng.Find(SearchValues(i), LookIn:=xlValues)
If Not cl Is Nothing Then
addr = cl.Address
Do
With cl.EntireRow
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
End With
Set cl = SrchRng.FindNext(cl)
Loop While cl.Address <> addr
End If
Next

当它变成:
Dim ws As Worksheet
Dim SrchRng As Range
Dim SearchValues() As Variant
Dim cl As Range, addr As String
Dim i As Long

SearchValues = Array(217, 317, 298)


Set ws = ActiveSheet
With ws
Set SrchRng = Range(.Cells(1, 7), .Cells(.Rows.Count, 7).End(xlUp))
End With

For i = LBound(SearchValues) To UBound(SearchValues)

Set cl = SrchRng.Find(SearchValues(i), LookIn:=xlValues)
If Not cl Is Nothing Then
addr = cl.Address
Do
With cl.EntireRow
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
.ClearContents
End With
Set cl = SrchRng.FindNext(cl)
Loop While cl.Address <> addr
End If
Next

唯一的补充是 Do/With 语句下的 .ClearContents ,除非我遗漏了某些东西,否则它似乎没有添加我所知道的变量。有人有什么想法吗?

**注意:它做了它应该做的事情,它只是抛出一个错误。

最佳答案

当您正在清除单元格时,cl可能是 Nothing所以你需要要么删除循环外的范围,要么添加一个测试 Nothing
方法1会更快

方法1 - 单次删除范围

Sub A()
Dim ws As Worksheet
Dim SrchRng As Range
Dim SearchValues() As Variant
Dim cl As Range, addr As String
Dim i As Long
Dim rng2 As Range

SearchValues = Array(217, 317, 298)

Set ws = ActiveSheet
With ws
Set SrchRng = Range(.Cells(1, 7), .Cells(.Rows.Count, 7).End(xlUp))
End With

For i = LBound(SearchValues) To UBound(SearchValues)
Set rng2 = Nothing
Set cl = SrchRng.Find(SearchValues(i), LookIn:=xlValues)
If Not cl Is Nothing Then
addr = cl.Address
Do
If Not rng2 Is Nothing Then
Set rng2 = cl.EntireRow
Else
Set rng2 = Union(rng2, cl.EntireRow)
End If
Set cl = SrchRng.FindNext(cl)
Loop While Not cl Is Nothing
End If
If Not rng2 Is Nothing Then
With rng2
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
.ClearContents
End With
End If
Next

End Sub

方法二
With cl.EntireRow
.Font.ColorIndex = 2
.Interior.ColorIndex = 1
.ClearContents
End With
Set cl = SrchRng.FindNext(cl)
Loop While Not cl is Nothing

关于将项目添加到 With...End With 时出现 excel 错误 91,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23443403/

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