I want to catch the active cell's location and show it with msgbox.eg: when I click the cell A1, the message box with a string"A1" willpop upAnyone can tell me how to catch the clicked cell's location name?
Activecell.Address...........................
Try ThisPrivate Sub Worksheet_Change(ByVal Target As Range)MsgBox "You just changed " & Target.AddressEnd Sub