作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
VBA 新手,如果有人可以帮助我,我在这里做错了什么。尝试运行循环以查找特定文本,启动循环然后在特定点停止。循环是这样的,我希望它复制我的工作表中下面的一些值,因此 a 是 55。我面临错误 Block IF without End If
这是代码:
Private Sub CommandButton3_Click()
For y = 1 To 15 Step 5
Dim x As Double
Dim a As Double
x = 1
a = 55
If Cells(x, y).Value = "Text1" Then
Do Until Cells(x, y).Value = "Text2"
Cells(a, y) = Cells(x, y).Value
Cells(a, y + 1) = Cells(x, y + 1)
x = x + 1
a = a + 1
Loop
End Sub
最佳答案
缩进是前进的方向,你有一个for
没有 next
的声明和一个if
没有End If
:
Private Sub CommandButton3_Click()
For y = 1 To 15 Step 5
Dim x As Double
Dim a As Double
x = 1
a = 55
If Cells(x, y).Value = "Text1" Then
Do Until Cells(x, y).Value = "Text2"
Cells(a, y) = Cells(x, y).Value
Cells(a, y + 1) = Cells(x, y + 1)
x = x + 1
a = a + 1
Loop
End If
Next y
end sub
关于vba - If 和 Do Until 循环 EXCEL VBA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41834632/
我是一名优秀的程序员,十分优秀!