gpt4 book ai didi

vba - 循环单元格并添加到范围

转载 作者:行者123 更新时间:2023-12-01 18:26:12 26 4
gpt4 key购买 nike

如果单元格 B1 到 J1 满足特定条件,我将如何循环并将它们添加到范围中。例如。

Dim Range1 As Range
For i = 1 to 9
If Range("A1").Offset(1,i) meets a certain criteria Then
**Add that cell to Range1**
End If
Next i

我不确定如何处理将某些单元格添加到 Range1 的部分。

感谢您的帮助!

最佳答案

像这样使用Union将您的范围粘合在一起

  1. 请注意,For every 循环比 For i = 1 to x 方法更快
  2. 您或许可以使用 SpecialCells立即确定您的新范围(例如任何空白、任何错误、任何公式等)

    Sub Test()
    Dim rng1 As Range
    Dim rng2 As Range
    Dim c As Range
    Set rng1 = Range("B1:J1")

    For Each c In rng1
    ' Add cells to rng2 if they exceed 10
    If c.Value > 10 Then
    If Not rng2 Is Nothing Then
    ' Add the 2nd, 3rd, 4th etc cell to our new range, rng2
    ' this is the most common outcome so place it first in the IF test (faster coding)
    Set rng2 = Union(rng2, c)
    Else
    ' the first valid cell becomes rng2
    Set rng2 = c
    End If
    End If
    Next
    End Sub

关于vba - 循环单元格并添加到范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8320822/

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