Display Text in Formula Bar for certain cells

T

Tracy

I have a column that it only 1 pt wide (and I want to keep it that width) and
I want to display the contents of this cell (which is a formula from another
worksheet) in the text format which is not able to be seen because of the
width of the cell.

If there is a way to make a comment pop up when that cell is highlighted
displaying information from another worksheet that would work as well, but I
don't think Excel is capable.

Thanks
Tracy
 
S

Sheeloo

There are many ways...
Following will show the value in the status bar if you click on any cell in
Col F
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Left(Target.Address, 2) = "$F" Then
Application.StatusBar = "Cell " & Target.Address & "=" & Target.Value
End If
End Sub

You can also run a macro to add comments to the column...
See http://www.contextures.com/xlcomments03.html for excellent examples for
dealing with comments...
 
T

Tracy

Unfortunately you are speaking Greek to me. I do not understand your answer.
Sorry
 

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

Top