Sub Formel()
With Range("B2").Select
.Range("B2:E2").AutoFill Destination:=.Range("B2:E" & .Cells(Rows.Count, "A").End(xlUp).Row), _
_
Type:=xlFillDefault
End With
End Sub
Range("B2:E2").AutoFill Destination:=Range("B2:E" & Cells(Rows.Count, "A").End(xlUp).Row), Type:=xlFillDefault
Sub Formel()
With Range("B2").Select
.Range("B2:E2").AutoFill Destination:=.Range("B2:E" & .Cells(Rows.Count, "A").End(xlUp).Row), _
_
Type:=xlFillDefault
End With
End Sub
Range("B2:E2").AutoFill Destination:=Range("B2:E" & Cells(Rows.Count, "A").End(xlUp).Row), Type:=xlFillDefault