Hello all,
I am familiar of the "Selection = (Variable) -or- (Variable) = Selection" syntax to refer to the contents of the current cell, and of the ActiveCell.Value property which I recently picked up.
Is there any reason to use one over the other?
Some bugs in my program were caused possibly because I used Selection instead of ActiveCell.Value (based on results, that seemed to be the probable cause) so I was wondering if one would rather use ActiveCell.Value rather then "Selection = (Variable) -or- (Variable) = Selection"
Hope I am making myself clear.

-JM967