A couple of items I see here:
1) The exception is to use .Select not the norm. Therefore cut down lines like:
to
2) Why do you keep recalculating the last row. Like:
3) Copy and paste in one line:
can be:
4) Calculate in memory and only print the results
5) This isn't going to increase efficiencey but just for your own personal knowledge, unless you are going to be skipping rows then you can lose the "Step 1" in lines like this:
6) Turn calculations off and turn them on only when they are needed to calculate a worksheet function that will be used later in the code.
7) As for better coding practices, use:
instead of:
[CODE]Range("A1").End(xlDown).Row[/CODE[
so that blank rows don't throw the code off.
Hope this helps.
abousetta
Bookmarks