Hi
Need to find text "Dividend" down column D
Then drag down the row above, in doing that it fix's errors it has created in formulas else where on sheet when extracted from the Web.
Example sheet attached : )
Cheers You Da Men : )
Hi
Need to find text "Dividend" down column D
Then drag down the row above, in doing that it fix's errors it has created in formulas else where on sheet when extracted from the Web.
Example sheet attached : )
Cheers You Da Men : )
Try this...
![]()
Sub FindDataAndFill() Dim rFound As Range With Columns("D:D") Set rFound = .Find(What:="Dividend", After:=.Cells(1), LookIn:=xlValues, _ LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext) End With If Not rFound Is Nothing Then rFound.Offset(, -1).Resize(, 8).FillDown End If End Sub
If your problem is solved, then please mark the thread as SOLVED>>Above your first post>>Thread Tools>>
Mark your thread as Solved
If the suggestion helps you, then Click *below to Add Reputation
Perfect
Thanks Very muchly
Me very happy
You are great![]()
Last edited by keen2xl; 04-05-2014 at 03:30 AM.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks