+ Reply to Thread
Results 1 to 9 of 9

Simple loop macro needed

Hybrid View

  1. #1
    Registered User
    Join Date
    07-29-2008
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Simple loop macro needed

    Hi there

    I need a simple loop macro which will run down column A and each time is finds a name there, it copies the name down to each row until it reaches the next name and then copies that name down all the blanks etc.

    I know this is probably simple to do. I'd really appreciate any help with this.

    Cheers,
    Darren
    Last edited by Gillman; 04-01-2010 at 01:00 PM.

  2. #2
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Simple loop macro needed

    Could you say what other column limits the list to be filled?

    If you leave it as it is the macro will either stop at the last entry, or run to the bottom of the sheet, in 2007 that's a long way!!!

  3. #3
    Registered User
    Join Date
    07-29-2008
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Simple loop macro needed

    Yes, of course...

    Would it be possible for the marco to run as long as there is information in column B? Else a more than safe number would be 2000, and I could manually clear away the last name where it's not necessary.

    Thanks.

  4. #4
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Simple loop macro needed

    Okay no problem

  5. #5
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Simple loop macro needed

    Try this

    Sub FillBlanks()
        Dim LastRow As Long, ThisRow As Long
        Dim LastName
        
        LastRow = Range("B" & Rows.Count).End(xlUp).Row
        For ThisRow = 2 To LastRow - 1
            LastName = Cells(ThisRow, 1)
            If Cells(ThisRow + 1, 1) = "" Then
               Cells(ThisRow + 1, 1) = LastName
            End If
        Next
    End Sub
    Hope this helps

    If this takes care of your needs, please click EDIT in your original post, click GO ADVANCED and set the PREFIX box to SOLVED. It helps everybody!
    Also
    If you are satisfied by any members response to your problem please consider using the scales icon top right of thier post to show your appreciation.

  6. #6
    Registered User
    Join Date
    07-29-2008
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Simple loop macro needed

    That worked perfectly, Marcol. Thank you, I really appreciate it.

    I've updated location as well as Excel version.

    Have a good Easter and thanks again :-)

    Cheers,
    Darren

  7. #7
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Simple loop macro needed

    You were to quick for me!

    I posted the wrong footer and then changed it, please look again.

  8. #8
    Registered User
    Join Date
    07-29-2008
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Simple loop macro needed

    All done. I'll go back and apply the "solved" to older posts as well.

    Cheers

  9. #9
    Forum Guru (RIP) Marcol's Avatar
    Join Date
    12-23-2009
    Location
    Fife, Scotland
    MS-Off Ver
    Excel '97 & 2003/7
    Posts
    7,216

    Re: Simple loop macro needed

    Good Lad!

    The moderators will like that!

    Wish many more would do the same!

    Thank you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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