Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default How can I display formula values instead of the formula?

I have a bunch of cells that contain formulas with values from all over the
place and
I would like to be able to see the values of each formula quickly.

To simplify, using the example formula =(A1+B2)/C3*D4)
I would like to see =(1+2)/3*4

I know I can sort of do this with the watch window or I can do something
like this -
="(" & A1 &" + "& B2 &") / "& C3 &" * "& D4 - in another cell but neither of
those are what I need. The watch window does not show the whole formula at
once and the 2nd is not easily replicated for many cells.

Thanks for looking,
Dan
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default How can I display formula values instead of the formula?

Press CTRL-`. It's a toggle, so press it again to turn off.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default How can I display formula values instead of the formula?

That seems to just show me the formula from the cell above the one that I am
currently in.

"Spiky" wrote:

Press CTRL-`. It's a toggle, so press it again to turn off.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default How can I display formula values instead of the formula?

That's ctrl-backquote (the key to the left of the !/1 on my USA keyboard).

Or you could use:
tools|options|view tab|check formulas
(xl2003 menus)

Dan G wrote:

That seems to just show me the formula from the cell above the one that I am
currently in.

"Spiky" wrote:

Press CTRL-`. It's a toggle, so press it again to turn off.


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default How can I display formula values instead of the formula?

Gotcha, I was hitting single quote.
Doing this seems to show the same as hitting F2 which just shows the
formula. Am I still not getting it? (Or not explaining what I am looking for
well enough more likely...)

I am thinking that I might just be out of luck.





"Dave Peterson" wrote:

That's ctrl-backquote (the key to the left of the !/1 on my USA keyboard).

Or you could use:
tools|options|view tab|check formulas
(xl2003 menus)

Dan G wrote:

That seems to just show me the formula from the cell above the one that I am
currently in.

"Spiky" wrote:

Press CTRL-`. It's a toggle, so press it again to turn off.


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 622
Default How can I display formula values instead of the formula?

I think you're right that we aren't communicating well.

F2 moves you into Edit mode in one cell.

But simpler for one cell at a time is to simply have the Formula Bar
showing and look up there to see the formula.

CTRL-` moves you into the Show Formulas view, which shows all the
formulas in the sheet. Although if they are long, it won't necessarily
show every character in the formula.

There is a UDF which is part of morefunc (search on download.com)
which will show formulas in a different cell. It's called FORMULATEXT,
and it simply shows a formula as the value in a cell. Like this:
=FORMULATEXT(A1) .....this will show whatever the formula looks like
in A1.
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default How can I display formula values instead of the formula?

OK, i thought that what I said was clear but here goes again.

I have no problem seeing the formulas. That is easy. What I want is to be
able to see the actual values that the formula uses laid out (without going
to the watch window every time).

So, using the example that I first wrote:
I can easily see =(A1+B2)/C3*D4).
I want to see =(1+2)/3*4

Basically, I want a quick way to produce the same results as
="(" & A1 &" + "& B2 &") / "& C3 &" * "& D4



Obviously this is a simplistic example, the actual formulas point across
multiple sheets etc...

I am not sure how much more explicit or clear that I can be.



"Spiky" wrote:

I think you're right that we aren't communicating well.

F2 moves you into Edit mode in one cell.

But simpler for one cell at a time is to simply have the Formula Bar
showing and look up there to see the formula.

CTRL-` moves you into the Show Formulas view, which shows all the
formulas in the sheet. Although if they are long, it won't necessarily
show every character in the formula.

There is a UDF which is part of morefunc (search on download.com)
which will show formulas in a different cell. It's called FORMULATEXT,
and it simply shows a formula as the value in a cell. Like this:
=FORMULATEXT(A1) .....this will show whatever the formula looks like
in A1.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default How can I display formula values instead of the formula?

Dan G wrote:
OK, i thought that what I said was clear but here goes again.

I have no problem seeing the formulas. That is easy. What I want is to be
able to see the actual values that the formula uses laid out (without going
to the watch window every time).

So, using the example that I first wrote:
I can easily see =(A1+B2)/C3*D4).
I want to see =(1+2)/3*4


Mismatched parens? How about =(A1+B2)/C3*B4
Mike
  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default How can I display formula values instead of the formula?

No, that was just a miskey.
I guess i am just going to go with either the question i am asking is not
possible, is just too lowbrow for this group, or is just not something that
you can do and will continue to suck it up and just continue to do something
like this

="(" & A1 &" + "& B2 &") / "& C3 &" * "& D4 for the cells that i really need
to see what numbers are being used in the formulas.

Sadly, it takes a long time when there are 10 or 20 numbers across sheets in
the formulas.



"MikeR" wrote:

Dan G wrote:
OK, i thought that what I said was clear but here goes again.

I have no problem seeing the formulas. That is easy. What I want is to be
able to see the actual values that the formula uses laid out (without going
to the watch window every time).

So, using the example that I first wrote:
I can easily see =(A1+B2)/C3*D4).
I want to see =(1+2)/3*4


Mismatched parens? How about =(A1+B2)/C3*B4
Mike

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default How can I display formula values instead of the formula?

Have a look at Dana's construction at this google search result.

http://tinyurl.com/4qnq7r

May give you a solution.


Gord Dibben MS Excel MVP

On Sun, 21 Sep 2008 17:48:06 -0700, Dan G
wrote:

No, that was just a miskey.
I guess i am just going to go with either the question i am asking is not
possible, is just too lowbrow for this group, or is just not something that
you can do and will continue to suck it up and just continue to do something
like this

="(" & A1 &" + "& B2 &") / "& C3 &" * "& D4 for the cells that i really need
to see what numbers are being used in the formulas.

Sadly, it takes a long time when there are 10 or 20 numbers across sheets in
the formulas.



"MikeR" wrote:

Dan G wrote:
OK, i thought that what I said was clear but here goes again.

I have no problem seeing the formulas. That is easy. What I want is to be
able to see the actual values that the formula uses laid out (without going
to the watch window every time).

So, using the example that I first wrote:
I can easily see =(A1+B2)/C3*D4).
I want to see =(1+2)/3*4


Mismatched parens? How about =(A1+B2)/C3*B4
Mike




  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default How can I display formula values instead of the formula?

thanks for the help
Sincerely

"Gord Dibben" <gorddibbATshawDOTca wrote in message
...
Have a look at Dana's construction at this google search result.

http://tinyurl.com/4qnq7r

May give you a solution.


Gord Dibben MS Excel MVP

On Sun, 21 Sep 2008 17:48:06 -0700, Dan G
wrote:

No, that was just a miskey.
I guess i am just going to go with either the question i am asking is not
possible, is just too lowbrow for this group, or is just not something
that
you can do and will continue to suck it up and just continue to do
something
like this

="(" & A1 &" + "& B2 &") / "& C3 &" * "& D4 for the cells that i really
need
to see what numbers are being used in the formulas.

Sadly, it takes a long time when there are 10 or 20 numbers across sheets
in
the formulas.



"MikeR" wrote:

Dan G wrote:
OK, i thought that what I said was clear but here goes again.

I have no problem seeing the formulas. That is easy. What I want is to
be
able to see the actual values that the formula uses laid out (without
going
to the watch window every time).

So, using the example that I first wrote:
I can easily see =(A1+B2)/C3*D4).
I want to see =(1+2)/3*4

Mismatched parens? How about =(A1+B2)/C3*B4
Mike




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
Excel 2007 - how do I display formula instead of values? thanks. Trish Excel Discussion (Misc queries) 3 August 25th 08 11:12 PM
display formula instead of its values in some cells ah 3 Excel Worksheet Functions 11 January 9th 06 03:59 PM
Modifying a Formula To display only Unique Values carl Excel Worksheet Functions 1 April 16th 05 08:17 PM
Values won't display after altering a formula. Mike O Excel Worksheet Functions 1 March 13th 05 11:21 PM
How to display the "values" included in a formula vs. the cells? pcmoLAT Excel Worksheet Functions 2 December 10th 04 06:22 AM


All times are GMT +1. The time now is 12:58 AM.

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

About Us

"It's about Microsoft Excel"