How to display cell values in formula instead of references?

lawi227

Board Regular
Joined
Mar 17, 2016
Messages
123
For example:

When I click in G5, the formula is: "='Benchmark Inputs '!F18/'Benchmark Inputs '!F10"

Instead, I would like to see: $2,398,528,746 / $4,219,000,000
The values can be displayed in H5.

My formulas have a variety of general, currency, and percentage formatting.

I'm ultimately using this as a way to confirm my calculations and show my work. I would prefer to not use VBA.

Thanks!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
if you click into the cell and highlight the whole formula and press F9 you will achieve this.
 
Upvote 0
That shows me the final value being calculated (which is .57), but i want to see the value for F18 and F10 located on the worksheet called "Benchmark Inputs"
 
Upvote 0
That shows me the final value being calculated (which is .57), but i want to see the value for F18 and F10 located on the worksheet called "Benchmark Inputs"

what? if you highlight the formula in the formula bar and press F9 it will give you the values from Benchmark Inputs in the formula bar
 
Upvote 0
It only shows the calculated result. I'm using a mac but that shouldn't make a difference.
 
Upvote 0
I'm not sure there's an easy way to do that. I'd suggest selecting your G5 cell, then go to the Formulas tab and click Evaluate Formula. It will step by step evaluate the formula, showing you the values as they are used/calculated. That's a way to check your work.

If you want to show your work, you'd probably have to rewrite your formula. In H5, put:

='Benchmark Inputs '!F18 & "/" & 'Benchmark Inputs '!F10

essentially leaving the range references alone, and putting the formula pieces in quotes. That's certainly the effect you want, I can't think of a way offhand to create the effect automatically.
 
Upvote 0
If you highlight a section for example the part in red and press F9 it will show you what that section comes out to. Be careful as if you hit enter it will hard code that value into the formula
Code:
"=[COLOR=#FF0000]'Benchmark Inputs '!F18[/COLOR]/'Benchmark Inputs '!F10"
would become
Code:
"=[COLOR=#FF0000]2398528746[/COLOR]/'Benchmark Inputs '!F10"
 
Upvote 0
This worked. I was highlighting the whole formula. Is there a way I could break down each component? My formulas all reference cells from the "Benchmark Inputs" tab, so I would think I could use some formula to parse out each piece of the equation.
 
Upvote 0
When a formula refers to a cell with a formula in it, it looks at the result of that formula not the formula itself for example
In A1
Code:
=Sheet2!A7+Sheet3!A7
In B1
Code:
=SEARCH("+",A1)

Even though the formula in A1 has a + the result does not so B1 returns a #VALUE error.

I do not know of a way to do what you want to do.
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top