Cell address in a given selection range.
I have a method which returns Excel selection Range using get_Address()
method. I am tyring to return all the cells in that selection range.
Ex: If I have selection Range from $A$1:$B$2 (this is my input) then I want
to output
$A$1
$A$2
$B$1
$B$2
Is it possible to achieve this using Excel OM?
|