+ Reply to Thread
Results 1 to 5 of 5

Changing a macro to use a loop

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-14-2012
    Location
    England
    MS-Off Ver
    Excel 2010/2013
    Posts
    100

    Changing a macro to use a loop

    Hi, I'm using a macro to drag down a formula across a worksheet then again further down the worksheet which is working ok but I know there has to be a better way of doing it. At the moment everytime I add a new collumn I have to edit the macro over and over and its getting out of hand. I know there must be a way of rewiting the macro into a loop but my skills are obviously still new. If anyone could help I would appereciate it.

    Here's the macro: Sorry I can't remeber how I'm supposed to post VBA - I hope this is right.

    ' first group
        Range("B2").Select
        Selection.AutoFill Destination:=Range("B2:B28"), Type:=xlFillDefault
        Range("B2:B28").Select
        Range("C2").Select
        Selection.AutoFill Destination:=Range("C2:C28"), Type:=xlFillDefault
        Range("C2:C28").Select
    This continues over to column AO so far then I drop down a few rows and do it again:

    ' second group
        Range("B29").Select
        Selection.AutoFill Destination:=Range("B29:B92"), Type:=xlFillDefault
        Range("B29:B92").Select
        Range("C29").Select
        Selection.AutoFill Destination:=Range("C29:C92"), Type:=xlFillDefault
        Range("C29:C92").Select
    I think I need to set variables that set the row and column each time. maybe a "drag formula one column at a time from row x to row y until column header is empty then move to the new row and repeat"?

  2. #2
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: Changing a macro to use a loop

    You don't need to do each column individually, you can replace the first block of code with:
    Range("B2:AO2").Autofill Range("B2:AO28")
    and the second block of code with:
    Range("B29:AO29").Autofill Range("B29:AO92")
    I don't see a pattern in the rows in order to create a loop.

  3. #3
    Forum Contributor
    Join Date
    05-14-2012
    Location
    England
    MS-Off Ver
    Excel 2010/2013
    Posts
    100

    Re: Changing a macro to use a loop

    Thanks Regulduy, I didn't realise it was that simple! I don't need a loop now. Brilliant.

  4. #4
    Forum Contributor
    Join Date
    05-14-2012
    Location
    England
    MS-Off Ver
    Excel 2010/2013
    Posts
    100

    Re: Changing a macro to use a loop

    Light bulb momentfor some reason i'm now getting error 1004 "Autofill method of range class failed"
    it seemsd to run the first 2 but stops after that

    ' run1
    Range("B2:Ap2").AutoFill Range("B2:Ap28")
    
    ' run2
    Range("B29:Ap29").AutoFill Range("B29:Ap92")
    
    ' run3
    Range("b93:ap110").AutoFill Range("b93:ap110")
      
    ' run4
    Range("B111:Ap130").AutoFill Range("B111:Ap130")

    Sorry Ignore that Ive lealised what I did wrong
    Last edited by KAPearson; 03-12-2014 at 08:43 AM. Reason: lightbulb moment!

  5. #5
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: Changing a macro to use a loop

    Hi - you need:
    ' run1
    Range("B2:Ap2").AutoFill Range("B2:Ap28")
    
    ' run2
    Range("B29:Ap29").AutoFill Range("B29:Ap92")
    
    ' run3
    Range("b93:ap93").AutoFill Range("b93:ap110")
      
    ' run4
    Range("B111:Ap111").AutoFill Range("B111:Ap130")

+ 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. Changing the index of a for loop inside of the loop
    By drinkmorewine in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 06-03-2013, 12:19 PM
  2. [SOLVED] Copy dynamically changing column and Paste using VBA Loop (Loop within Loop)
    By nixon72 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-12-2013, 12:46 PM
  3. [SOLVED] Loop Macro with Changing Variables
    By gjohn282 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-07-2013, 10:24 PM
  4. Do-While loop within a do-while loop? Dealing with changing number of rows
    By Motox in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-02-2012, 12:59 AM
  5. How can I avoid changing a loop counter within a loop?
    By broro183 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-26-2009, 07:59 PM

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