+ Reply to Thread
Results 1 to 2 of 2

Need help on set range and autofill

Hybrid View

  1. #1
    Registered User
    Join Date
    12-06-2013
    Location
    US
    MS-Off Ver
    Excel 2013
    Posts
    7

    Need help on set range and autofill

    123.xlsxi am try create a macro to search a keyword and use number of cell data below the keyword as a range for autofill. Then search another keyword and autofill the data the keyword but autofill till the range u set it. i attach a example of it
    Cells.Find(What:="NEIGHBORHOOD", After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate
    ActiveCell.Offset(1, 0).Select
    
    
    Dim Myrange As Range
    Set Myrange = Range(ActiveCell, ActiveCell.End(xlDown))
    
    
    Cells.Find(What:="Miles", After:=ActiveCell, LookIn:=xlFormulas, _
    LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
    MatchCase:=False, SearchFormat:=False).Activate
    
    ActiveCell.Offset(1, 0).Select
    ActiveCell.AutoFill Destination:=Range(ActiveCell & Myrange)
    Last edited by chriskingkiller; 12-06-2013 at 08:34 PM.

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Need help on set range and autofill

    Hi, chriskingkiller,

    IŽd narrow the area to search down form all cells (which includes all those which are blanks) to ActiveSheet.UsedRange or any Column:
    Sub EF973716()
    'http://www.excelforum.com/excel-programming-vba-macros/973716-need-help-on-set-range-and-autofill.html
    Dim rngStart As Range
    Dim rngMiles As Range
    Dim lngCount As Long
    
    Set rngStart = Cells.Find(What:="NEIGHBORHOOD", After:=ActiveCell, LookIn:=xlFormulas, _
        LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False)
    
    If Not rngStart Is Nothing Then
      lngCount = rngStart.End(xlDown).Row - rngStart.Row
      Set rngMiles = Cells.Find(What:="Miles", After:=rngStart, LookIn:=xlFormulas, _
          LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
          MatchCase:=False, SearchFormat:=False)
      If Not rngMiles Is Nothing Then
        Set rngMiles = rngMiles.Offset(1, 0)
        rngMiles.AutoFill Destination:=rngMiles.Resize(lngCount, 1)
      End If
    End If
    
    Set rngMiles = Nothing
    Set rngStart = Nothing
    
    End Sub
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for 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. [SOLVED] Very small AutoFill macro showing "AutoFill methode of range class failed" why ?
    By nur2544 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-28-2013, 10:21 PM
  2. autofill in macro range is constant- how can I code to be a variable range?
    By mcg7@ntrs.com in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 02-20-2010, 12:44 AM
  3. Autofill range
    By jprockjr in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-10-2010, 05:34 PM
  4. Autofill:Range
    By dfeld71 in forum Excel General
    Replies: 0
    Last Post: 04-12-2005, 03:07 PM
  5. autofill a range
    By HENKIE in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 02-18-2005, 03:14 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