+ Reply to Thread
Results 1 to 3 of 3

Autofill range

  1. #1
    Registered User
    Join Date
    10-25-2009
    Location
    USA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Autofill range

    Hi, I'm a noob with VBA coding, I got an idea but it seems as if the syntax is throwing off my code. I appreciate the help.

    On sheet 1: I have values from A2:A10 with corresponding values from B2:B10. There are values rows 12 and down.

    On sheet 2: I have A1=Sheet1!A2 and B1 =Sheet1!B2

    I want a macro to autofill down to the last value that I specify. I have labeled A11 on sheet 1 as 'stop' to identify the location of that cell in order to autofill down to 'stop'. Rows will be added between A2:A10 so the location of 'stop' is not constant.

    I'm sure this can be done with the copy function as well. I'm just not sure how to specify my autofill range up to the cell i have named 'stop' on sheet 1.

    This is my code so far,


    Sub Macro1()
    Sheets("Sheet2").Select
    Range("A1").Select
    Selection.AutoFill Destination:=Range("A1:A6"), Type:=xlFillDefault
    Range("A1:A6").Select
    Range("B1").Select
    Selection.AutoFill Destination:=Range("B1:B6"), Type:=xlFillDefault
    Range("B1:B6").Select
    Range("A1").Select
    Sheets("Sheet1").Select
    Range("C8").Select
    End Sub



    I appreciate the help.

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Autofill range

    Welcome to the forum, JP.

    Please take a few minutes to read the forum rules, and then edit your post to add code tags.

    Thanks.

    EDIT: What's in A11? A cell address, a row number, ...
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    10-25-2009
    Location
    USA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Autofill range

    I apologize. I will take a look at the rules. A11 simply has the value stop.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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