我有一个函数,它将一系列值作为输入(只是一列)以及一些阈值。我想返回一个经过过滤的范围,以包含原始范围中大于阈值的所有值。我有以下代码:
Public Function FilterGreaterThan(Rng As Range, Limit As Double) As Range
Dim Cell As Range
Dim ResultRange As Range
For Each Cell In Rng
If Abs(Cell.Value) >= Limit Then
If ResultRange Is Nothing Then
Set ResultRange = Cell
Else
Set ResultRange = Union(ResultRange, Cell)
End If
End If
Next
Set FilterGreaterThan = ResultRange
End Function
问题在于,一旦某个数字低于阈值,则该数字之后高于阈值的其他数字不会添加到该范围中。
例如:
Threshold - 2
Numbers -
3
4
1
5
它将循环添加 3 和 4,但不会添加 5。我最终得到一个#value 错误。但是我没有收到任何错误,如果我只输入范围 - 3、4 或范围 - 3、4、1,它就可以正常工作。