• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

How to display address of active cell in another cell

deb45

New Member
Hello,

I want to display active cell address in another cell. Is it possible using formula?


Regards
Deb
 
hi----you can to move this share to Vba Dep.
You can to Use this code in the page's Code
any Active Cell Will shown in cell A1
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Range("A1").Value = ActiveCell.Value
    If ActiveCell = "" Then
    Range("A1").Value = ActiveCell.Address
End If
End Sub
 

Attachments

  • Active Cell.xlsm
    12.8 KB · Views: 1
try this formula in any (cell A1 for example)
when you change the value of any cell ,the cell A1 display the address
Code:
=CELL("address")
 
Back
Top