using marked range on spreadsheet in a macro
Posted by Eli Weiss on February 26, 2001 5:39 AM
Hi fellows,
In order to do any action on a range of cells in Excel macros (like painting the range area in any color), one has to specify this range directly [Range(A1:C5)] or indirectly, like [ActiveCell.CurrenRegion], or by using InputBox and so on.
My question is how can one mark a range area with the mouse directly on the spreadsheet before or during the macro execution, so that it will be used within the macro as a defined range when it is needed.
Eli Weiss