I'm looking at code written by someone else and trying to make it cleaner/faster/nicer. I'm no expert so it's a good learning experience. One thing I see a few times is

Code:
ActiveCell.Select
Isn't the ActiveCell already selected? So, isn't this command a waste of time? And another time I saw something even worse.

Code:
ActiveCell.Offset(0,0).Range("A1").Select
Isn't this an even more complicated way of saying the same thing, also accomplishing nothing?