Cell Contents

G

Guest

I have a very large spreadsheet. In Column D is the Action/Subject for the
row. As I scroll across I would like to add contents of of that cell to
either one or two places. First, either to the top where it says "Microsoft
Excel - GB Taskings" or to the bottom left where it says "Ready" just below
the sheet names. As an example say for the top it counld read "Microsoft
Excel - GB Taskings (POTUS Visit). POTUS Visit being the contents on the
column D for the active row. If there is a better method please advise. I
really do not wabt to freeze the window.

Thanks
Bill
 
T

Tom Ogilvy

Right click on the sheet tab and select view code. Put in code like this.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.StatusBar = Cells(Target(1).Row, 4).Value
End Sub

To reset the status bar, execute code that does

Application.StatusBar = False

Regards,
Tom Ogilvy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Cell to Row 9
CPSCount 2
Copy contents of cell to another tab 2
Clear contents on change 5
Excel Excel Vab Display contents of Cell 2
Move cell contents along using vba? 7
Cell content removal 11
Search cell contents 2

Top