How to refer in the code to the selected range of cells in the active sheet. To clarify, I am not asking how to select a range of cell.
Is there any ActiveRange ActiveRegion or something? I haven't found it...
For example, (not working) here is a simple sub:
Sub test()
Dim region, cel As Range
region = ActiveCell.CurrentRegion
For Each cel In region
cel = 1
Next cel
End Sub