Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
maria28
 
Posts: n/a
Default how can i do a (fx) visible in a cell

I am working on an excel sheet with functions(fx).
The functions i use are shown in the formula bar.
My question is what should i do to see in the cell always the function
(except from the formula bar) and not the result of the function?

  #2   Report Post  
arno
 
Posts: n/a
Default how can i do a (fx) visible in a cell

Hi maria28,

always the
function (except from the formula bar) and not the result of the
function?


this "function" of Excel VBA will show you always the formula of cell
"d":

Function myFormula(d As Range) As String
'gives the formula of cell "d"
If d.Cells.Count 1 Then 'if you select more than one cell
myFormula = "Error: Refer to one cell only!" 'error message
Else
myFormula = d.Formula 'show the formula
End If
End Function

Place this "makro" in you workbook, in the sheets you use eg.
=myFormula(A1) to display the formula of cell A1.

arno

  #3   Report Post  
Gary''s Student
 
Posts: n/a
Default how can i do a (fx) visible in a cell

By typing CNTRL-TILDA you can toggle between displaying the formula and the
resutls of a formula in a cell
--
Gary''s Student


"maria28" wrote:

I am working on an excel sheet with functions(fx).
The functions i use are shown in the formula bar.
My question is what should i do to see in the cell always the function
(except from the formula bar) and not the result of the function?

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
Cell selection not visible Mangesh Yadav Excel Discussion (Misc queries) 1 September 1st 05 01:29 PM
copying cell names Al Excel Discussion (Misc queries) 12 August 11th 05 03:01 PM
Visible cell characters sixtyseven67 Excel Discussion (Misc queries) 1 February 7th 05 09:05 PM
GET.CELL Biff Excel Worksheet Functions 2 November 24th 04 07:16 PM
VLookup resulting in a blank cell... KempensBoerke Excel Worksheet Functions 1 October 28th 04 09:57 PM


All times are GMT +1. The time now is 08:55 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"