gpt4 book ai didi

vba - If 和 Do Until 循环 EXCEL VBA

转载 作者:行者123 更新时间:2023-12-02 07:42:55 25 4
gpt4 key购买 nike

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/

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