我是Stack Overflow和VBA的新手。 我尝试编写一些VBA代码以选择Excel中包含特定数字的所有行(从A到E)。
(部分)我的代码
Dim ploeg as range
Dim ploeg2 as range
For v = 1 To 100
If Cells(v, 6) = 1 Then
Set ploeg = Range(Cells(v, 1), Cells(v, 5))
Set ploeg2 = Union(ploeg2, ploeg)
End if
Next v
Ploeg2.Select
但这不起作用...
有人可以帮我吗?
答案 0 :(得分:7)