View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default return the row of any selected cell

Namebox not adequate?

Try this UDF if not.

Function WhatCell()
Application.Volatile
WhatCell = ActiveCell.Address
End Function

NOTE: you must force a recalculation before it will update.

F9 key will calculate. Or F2 then Enter


Gord Dibben MS Excel MVP


On Fri, 13 Nov 2009 16:07:01 -0800, kim55
wrote:

I want to be able to see in a cell the row number of any other currently
selected cell.