T Thomas Oct 31, 2003 #1 How would I define the cell address of the cell above my activecell? Thanks in advance
D Don Guillett Oct 31, 2003 #3 Is this what you want? Sub defineabove() x = ActiveCell.Offset(-1).Address MsgBox x End Sub