How do you determine if it's the 1st row/col of a specified range?
Hi
Is there a piece of code that will allow me to decide whether a DummyCell is in the 1st row (or column) of a specified Range? I am interested in this as I wish to perform a special operation if it's the 1st row (or 1st column)
Thanks very much for your help!
SuperJas
-------------------------
Sub Test(
Dim DummyCell as Range, MyArea as Rang
For Each DummyCell in MyArea.Cell
<if it's the 1st row The
............
<If it's the 1st col The
..........
Next DummyCel
-----------------------------------------
|