C chrisdarl Apr 26, 2004 #1 Hi, i am wanting to find the row number of a active cell. can anyon give me some code to be able to do this? Many thanks Chris
Hi, i am wanting to find the row number of a active cell. can anyon give me some code to be able to do this? Many thanks Chris
D DSC Apr 26, 2004 #2 Hi Chris Use Dim ActiveRow as Long ActiveRow = Activecell.Row msgbox ActiveRow This gives the numeric value of the Row that the cell is on HTH Davi
Hi Chris Use Dim ActiveRow as Long ActiveRow = Activecell.Row msgbox ActiveRow This gives the numeric value of the Row that the cell is on HTH Davi
H Henk Rek Apr 26, 2004 #6 What about this; Sub RowNnumber() Dim RowNumber As Long RowNumber = ActiveCell.row MsgBox ("Row number of the active cell is " & ActiveCell.row) End Sub Henk
What about this; Sub RowNnumber() Dim RowNumber As Long RowNumber = ActiveCell.row MsgBox ("Row number of the active cell is " & ActiveCell.row) End Sub Henk