Dear people,
My macro is almost finished , but i need to autofill the cells below, till row next to it is empty. Is there somebody who knows how to do this. Below is my macro, I placed dots were I need the missing codes.
Thank you in advance
Mahsun
Sub deelC2()
'
' deelC2 Macro
'
'
Range("A1").Select
Cells.Find(What:= _
"#rewto" _
, After:=ActiveCell, LookIn:=xlFormulas, LookAt:=xlPart, SearchOrder:= _
xlByRows, SearchDirection:=xlNext, MatchCase:=False, SearchFormat:=False) _
.Activate
Selection.Offset(4, 6) = "=INDEX(R4C44:R6172C48,MATCH(RC[-1],R4C4:R6172C4,0),5)"
ActiveCell.Select
.....
End Sub