View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Misssy Misssy is offline
external usenet poster
 
Posts: 4
Default Showing selected cell value

Thanks - All options work great!

"Bob Phillips" wrote:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Me.Range("H1").Value = Target.Value
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--

HTH

RP
(remove nothere from the email address if mailing direct)


"Misssy" wrote in message
...
Is there a way I can show in one cell the value of whatever cell is

selected?