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)
Bookmarks