I am trying to speed up my macro by eliminating the use of the select method. Much of my code has code like this:
Range("A5").Select
Range(Selection, Selection.End(xlToRight)).Select
Range(Selection, Selection.End(xlDown)).Select
how can I do the same thing without using select?