Results 1 to 4 of 4

Do without Loop Error.... please help...

Threaded View

  1. #1
    Registered User
    Join Date
    12-19-2018
    Location
    Europe
    MS-Off Ver
    2018
    Posts
    2

    Question Do without Loop Error.... please help...

    I have been trying to resolve this issue but no success. Everytime I tried to run the code it gives Bach "Do without Loop" error. I checked the codes and so far no luck in finding the error. I have Do and End If on every statements so I am not sure anymore what is the problem. Please help. Thank you.

    Sub Calculation
    Dim Row  As Integer
    Dim endLine As Long, hundert As Double, startDate As Variant, endDate As Variant, currDate As Date
    Row = 5
    Do While Cells(Row, 5) <> ""
    endLine = Cells(Rows.Count, 1).End(x1Up).Row
    wTime = 0
    tempWNum = -1
    Range("L" & Row & ":V" & endLine).Clear
    Call GroupTimes(Rows, endLine)
    
    Do Until endLine < Row
        startDate = Cells(Row, 8)
        endDate = Cells(Row, 9)
        dTime = (endDate - startDate) * 24
        currDate = Cells(Row, 1).Value2
        entryState = Cells(Row, 6).Value2
        
        If entryState = "Sick" Then
            Cells(Row, 17) = dTime
            GoTo ContinueDo
        End If
    
        If entryState = "Vacation" Then
            Cells(Row, 18) = dTime
            GoTo ContinueDo
        End If
    
        If entryState = "ZA" Then
            Cells(Row, 19) = dTime
            GoTo ContinueDo
        End If
    
        wTime = wTime + dTime
    
        If Not IsEmpty(Cells(Row, 1).Value2) Then
            wnum = IsoWeekNumber(currDate)
        End If
        If tempWNum < 0 Then
            tempWNum = wnum
        End If
    
        If wnum > tempWNum Then
            wTime = wTime - dTime
            Cells(Row - 1, 21) = wTime
            wTime = dTime
            tempWNum = wnum
        End If
    
        If IsEmpty(startDate) Or IsEmpty(endDate) Then
            GoTo ContinueDo
        End If
        If Not Weekday(Cells(Row, 1)) = 1 Then
        hundert = GetTimeHundertPerc(startDate, endDate)
        End If
        If hundert > 0 Then
            conv = hundert * 24
            Cells(Row, 16) = conv
            dTime = dTime - conv
            hundert = 0
        End If
    
        If Weekday(Cells(Row, 1)) = 1 Then
            Cells(Row, 16) = dTime
        Else
            If dTime > 0 Then
                If dTime <= 8 Then
                    Cells(Row, 14) = dTime
                Else
                    If (dTime - 8) > 0 Then
                        Cells(Row, 14) = 8
                        Cells(Row, 15) = dTime - 8
                    End If
                End If
            End If
        End If
        startDate = Cells(Row, 8)
    ContinueDo:
         Row = Row + 1
         Loop
    'write last week time
    Cells(Row - 1, 21) = wTime
    
    End Sub
    Last edited by jazzyred79; 12-19-2018 at 05:44 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Excel VBA - Loop through recordsets ADODB with For Loop Error - Help
    By ironfelix717 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 08-27-2018, 08:44 AM
  2. trying to copy a worksheet to end gives error and I get stuck in a error loop
    By pongmeister in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 08-11-2017, 11:48 AM
  3. Replies: 5
    Last Post: 12-08-2016, 06:43 PM
  4. [SOLVED] Go to next loop iteration if current loop has error
    By luv2glyd in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 02-03-2016, 09:54 PM
  5. Loop Nesting is returning Run-Time Error '-2147221080 (800401a8)': Automation Error
    By ChristopherBrandonKi in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 11-21-2014, 02:36 PM
  6. HOW TO: Pause loop, fix error on a popup UserForm, continue loop
    By AndyMachin in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 06-19-2014, 04:37 PM
  7. Nesting a loop within a loop error
    By PunPryde in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-17-2011, 08:07 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1