What is the purpose of the .Range("A1:E5").Select portion of this statement?
ActiveCell.Offset(3,4).Range("A1:E5").Select
It provides Resize information - in this case, the offset returns a reference of five rows and five columns
If specifies the range that is to be selected after the offset is found
it specifies the range of cells in which the contents of the offset are to be written
It specifies the range of cells at which the offset is to be based