Range("E3:E6").Select
Selection.AutoFill Destination:=Range("E3:E15"), Type:=xlFillDefault
Sub FormatFill()
Range("E5").Select ' make sure its at start of your data range
Selection.AutoFill Destination:=Range("E5:E15"), Type:=xlFillFormats
End Sub