What is the problem with the macro : below
I would like that excel give me back the information of My_Row=5, because that is the row of the Range B5. How can I do this?
:confused:
Code:
Sub M()
C = Worksheets("SHEET1").Range("B5")
C = ActiveCell
My_row = ActiveCell.Row
End Sub
:confused:
Comment