简体   繁体   中英

Do Until Loop, If Then VBA Excel

UPDATE: I got the code to do exactly what I wanted it to do (pasted below), although some may probably disagree with my method (and I'll take feedback because I am 100% new to this).

I am trying to create a simple VBA code to run a loop with an if then statement -and if the statement is true then stop the loop. If the statement is never true until the end, then stop the loop when cell is IsEmpty().

This is what I have so far. It is obviously incorrect and it is not running, but I hope this attempt will help you grasp an idea of what I'm trying to do.

Sub runoutDateLoop()
r = 8
Do Until IsEmpty(Cells(r, 1))
c = 24
Do Until Cells(r, c - 1).Value < 1 = True
 If Cells(r, c).Value < 1 Then
 Cells(r, 18).Value = Cells(7, c)
 Else
 Cells(r, 18).Value = Cells(7, c)
 End If
 c = c + 1
Loop
r = r + 1
Loop
End Sub

I am trying to create a loop until the if statement is true. The if then statement is simply- if the number is a negative number, then we want cell r,18 to copy to cell 7,c. If not, then the loop occurs until there is a negative number OR if there is never a negative number, then until the cell is empty. I want this to also have a double Do Until loop with every row.

Anyone have any ideas please??

Thank you!

To exit a Do loop early, use Exit Do . Since you have two nested loops, you will need a flag to exit the outer loop.

Sub RunoutDateLoop()
    Dim r As Long, c As Long
    Dim Found As Boolean
    r = 8
    Do Until IsEmpty(Cells(r, 1))
        c = 24
        Do Until IsEmpty(Cells(r, c))
            If Cells(r, c).Value < 1 Then
                Cells(r, 18).Value = Cells(7, c)
                Found = True
                Exit Do 'Exit the inner do
            End If
            c = c + 1
        Loop
        If Found Then Exit Do 'exit the outer do
        r = r + 1
    Loop
End Sub

Note: I make no comment on the logic within the loops, it's a bit unclear what your data is, and the exact logic you require (eg if the number is a negative number vs If Cells(r, c).Value < 1 )

with help everyone's comments, this is what I have and works exactly what I'd like it to do. It may be a little confusing because my data is very convoluted and hard to understand without actually seeing the spreadsheet.

Sub RunoutDateLoop()
Dim r As Long, c As Long
Dim Found As Boolean
r = 8
Do Until IsEmpty(Cells(r, 1))
    c = 24
    Do Until IsEmpty(Cells(r, c))
        If Cells(r, c).Value < 1 Then
            Cells(r, 18).Value = Cells(7, c)
            Found = True
            Exit Do 'Exit the inner do
                Else
                Cells(r, 18).Value = Cells(7, c)
        End If
        c = c + 1
    Loop
    r = r + 1
Loop
End Sub

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM