• 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 refer current active cell's address?

Frank

New Member
Hi, everybody


I subscribed this blog since 2 months ago, learned a lot from here.

But today, I have a question about referring current active cell's address.


For example, one sheet filling with data.

I want that --

For example, when I choose B2, A1 can display the content of B2.

And, when I choose G25, A1 can also display the content of G25.


In other words, A1 can also display the current active cell's content.


I only know how to use macro to finish this function.

Is there any formula that can realize this function?
 
Frank


You can put the folowing code in the Worksheet Object not in VBA Module


Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Cells(1, 1) = ActiveCell.Value

End Sub
 
Back
Top