+ Reply to Thread
Results 1 to 3 of 3

Auto fill formulas

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-20-2005
    Posts
    256

    Auto fill formulas

    Hi all,

    Any direction on this would be wonderful.

    Dates are put into Column B, starting at row 5.
    Fomulas in Columns BF5, BG5, BH5, BI5.
    Goal is to have the formulas auto filled down from Row 6, down equal to the last used cell in Column B

    error is --> "Autofill method or range failed" --> on the "Range("BF5")" line.

    LRow is --> Dim LR As Long
    If Target.Column = 2 Then
            LRow = Cells(Rows.Count, 2).End(xlUp).Row
            Range("BF5").AutoFill Destination:=Range("BF6:BF" & LRow)
            Range("BG5").AutoFill Destination:=Range("BG6:BG" & LRow)
            Range("BH5").AutoFill Destination:=Range("BH6:BH" & LRow)
            Range("BI5").AutoFill Destination:=Range("BI6:BI" & LRow)
    End If
    Thx
    Dave
    "The game is afoot Watson"

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259
    Hello Desert Piranha,

    When using AutoFill the destination range must include the source range. You code should look like this...

    If Target.Column = 2 Then
            LRow = Cells(Rows.Count, 2).End(xlUp).Row
            Range("BF5").AutoFill Destination:=Range("BF5:BF" & LRow)
            Range("BG5").AutoFill Destination:=Range("BG5:BG" & LRow)
            Range("BH5").AutoFill Destination:=Range("BH5:BH" & LRow)
            Range("BI5").AutoFill Destination:=Range("BI5:BI" & LRow)
    End If
    Sincerely,
    Leith Ross

  3. #3
    Forum Contributor
    Join Date
    11-20-2005
    Posts
    256
    Hi Leith,

    Thanks so much. Works great. I almost had it right.

    Thanks again
    Dave
    Quote Originally Posted by Leith Ross
    Hello Desert Piranha,

    When using AutoFill the destination range must include the source range. You code should look like this...

    If Target.Column = 2 Then
            LRow = Cells(Rows.Count, 2).End(xlUp).Row
            Range("BF5").AutoFill Destination:=Range("BF5:BF" & LRow)
            Range("BG5").AutoFill Destination:=Range("BG5:BG" & LRow)
            Range("BH5").AutoFill Destination:=Range("BH5:BH" & LRow)
            Range("BI5").AutoFill Destination:=Range("BI5:BI" & LRow)
    End If
    Sincerely,
    Leith Ross

+ 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