ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Show text in the Funtion Bar (https://www.excelbanter.com/excel-programming/419590-show-text-funtion-bar.html)

Tracy

Show text in the Funtion Bar
 
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

Jim Cone[_2_]

Show text in the Funtion Bar
 

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

Tracy

Show text in the Funtion Bar
 
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


Chip Pearson

Show text in the Funtion Bar
 
As its name implies, it is the *formula* bar, and will only show
formulas, not the results of formulas. What you want to do cannot be
done.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)


On Wed, 5 Nov 2008 13:39:03 -0800, Tracy
wrote:

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.


Jim Cone[_2_]

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




All times are GMT +1. The time now is 01:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com