Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,549
Default Show text in the Funtion Bar

Another way? - not that I know of.
However, you can add a comment to each cell, but that seems like overkill...
'--
Sub GiveHint()
Dim rCell As Range
For Each rCell In Selection.Cells
On Error Resume Next
rCell.Comment.Delete
On Error GoTo 0
If Len(rCell.Formula) 0 Then
rCell.AddComment rCell.Text
End If
Next
End Sub
--
Jim Cone
Portland, Oregon USA



"Tracy"
wrote in message
Is there another way so I don't have to move the cursor up to the function bar?
Trying to keep it simple. Thank you so much Jim.
--
Tracy



"Jim Cone" wrote:
If you highlight the formula in the Formula bar and then press the F9 key,
the cell value will be displayed. Press the Escape key to exit.
Do not press enter.
--
Jim Cone
Portland, Oregon USA






"Tracy"
wrote in message
I have a column width which need to remain small.
The column contains an =function from another worksheet.
I need the cell to show the text information in the function bar at the top
of the sheet when highlighted, not the formula.
Or I need to insert a comment that allows me to insert a formula inside that
comment.
--
Tracy


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
text with a numeric funtion Desperate for Help Excel Discussion (Misc queries) 2 December 20th 07 12:10 PM
grab cell text from multi-tab workbook, show text in another workb pfa Excel Worksheet Functions 16 August 10th 07 08:50 PM
Text wrap doesnt always show all text carol49 Excel Discussion (Misc queries) 0 July 4th 07 08:14 PM
To show the whole text in a tooltip text Pierre Archambault Excel Programming 4 January 19th 06 01:19 AM
show different text in a text box depending on cell value John Davies Excel Programming 1 July 29th 05 10:50 AM


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

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"