Range Referencing Problem
Posted by JohnLat on December 22, 2000 11:50 AM
It was Fredrick Douglass who said:
- If there is no struggle there is no progress.
In this spirit I continue to struggle to understand ranges.
Here is my problem:
I am attempting to select a range in this manner:
Select top of range:
Alpha = ActiveCell.Address
Select bottom of range ( after a new cell is selected ):
Omega = ActiveCell.Address
Then I attempt to select this range:
Range(Alpha, Omega).Select
This gives me the following error message:
Application-defined or object-defined error
Is this simply a syntax error error on the select statement?
Or, is there a more fundamental problem?