PC Review


Reply
Thread Tools Rate Thread

Cell to display text from cell on focus??

 
 
sunilkes@gmail.com
Guest
Posts: n/a
 
      6th Nov 2006
Hello

Is it possible to have a cell in a worksheet to display all contents of
whichever cell has focus?

Thanks

 
Reply With Quote
 
 
 
 
Otto Moehrbach
Guest
Posts: n/a
 
      6th Nov 2006
Paste both of these macros into the sheet module of your sheet. To access
that module, right-click on the sheet tab, select View Code, "X" out of the
module to return to your sheet. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
Range("A1").Value = Target.Value
Application.EnableEvents = True
End Sub

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

<(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hello
>
> Is it possible to have a cell in a worksheet to display all contents of
> whichever cell has focus?
>
> Thanks
>



 
Reply With Quote
 
sunilkes@gmail.com
Guest
Posts: n/a
 
      7th Nov 2006
Super - this is exactly what I was looking for. Thanks !

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
display text in one cell as a number in an adjacent cell in excel =?Utf-8?B?RGVubm8=?= Microsoft Excel New Users 1 16th Nov 2006 05:13 PM
have one cell display text which reflects a number in another cell =?Utf-8?B?ZXhjZWxyb29raWU=?= Microsoft Excel Misc 3 25th Sep 2006 05:49 PM
Display contents of cell in another cell as part of text string? mschmidt@carolina.rr.com Microsoft Excel New Users 3 8th Jul 2006 07:44 PM
display a number in one cell as text in more than one cell? =?Utf-8?B?U3Rvcm0=?= Microsoft Excel Misc 6 6th Jul 2006 03:08 PM
large text amount in cell will not display in the cell =?Utf-8?B?ZGJlbGNoMDE=?= Microsoft Excel Misc 3 15th Jun 2005 03:43 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:08 PM.