+ Reply to Thread
Results 1 to 3 of 3

Error With a Do Until Loop

Hybrid View

  1. #1
    Registered User
    Join Date
    09-26-2007
    Posts
    32

    Error With a Do Until Loop

    This piece of code was provided by someone else to help me - however he is unavailable and I am trying to get this project completed. If anyone here can help, I'd appreciate it.

    The debugger gives me a compile error on the Loop at the bottom of the code. "Compile error - Loop without Do"!

    Anyone see anything obvious please?

    Kev

    Sub SumNames()
        
    Dim earn_count As Currency
    Dim person_name As String
    Dim i As Integer
    
    i = 2   'starting row
    
        'get initial values
        Cells(i, 1).Activate
        person_name = Selection.Value
        earn_count = earn_count + Cells(i, 2).Value
        
        'loop until empty cell found:
        Do Until IsEmpty(ActiveCell)
            'check for matching name:
            If Cells(i + 1, 1).Value = person_name Then
                earn_count = earn_count + Cells(i + 1, 2).Value
            Else
                'routine to export person_name and earn_count goes here
                
                Call totname
    
                'set up ready for next person
                earn_count = Cells(i + 1, 2).Value
                person_name = Cells(i + 1, 1).Value
            
            'activate next row
            Cells(i + 1, 1).Activate
            'increment loop
            i = i + 1
        Loop
    
    End Sub

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    I don't see an
    End if
    after
    i = i + 1
    More on loops here

    http://exceltip.com/st/Using_Loops_i...Excel/628.html

    http://www.ozgrid.com/VBA/loops.htm

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    09-26-2007
    Posts
    32
    This now seems to work thank you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Programming a Find Loop?
    By mcbain in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 02-21-2008, 04:44 AM
  2. Loop with a loop? or something else..
    By Aurbo99 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-13-2007, 09:56 PM
  3. Do Loop Until Loop
    By carsto in forum Excel Programming / VBA / Macros
    Replies: 11
    Last Post: 06-12-2007, 10:20 AM
  4. For type loop verse Do type loop
    By boylejob in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-09-2007, 03:02 PM
  5. Extend Loop From Within ?
    By Blewyn in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-26-2007, 05:34 AM

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