How do I create a viewable formula using calculated fields?)Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to build a fileld in an Excel Spreadsheet which shows 2 other
calculates field values in a simple statement. (ie: A1 = X1 + Y2 and B1 = R4
/ V20 such that the computed value of A1 may = 350 and B1 may = 450... I
want to show in another cell, such as C1 the computed values in a formula
ie: C1 = "(350 / 450)" will be visable, not treated as a formula and
computed. I hope this is somewhat clear.
 
John

One method.........

="("&A1&"/"&B1&")" returns (350/450)


Gord Dibben Excel MVP
 
The intent is to show the formula actually in use in another cell, install
GetFormula in your personal.xls workbook
and invoke as follows:
=personal.xls!GetFormula(A1)

see page http://www.mvps.org/dmcritchie/excel/formula.htm

This will show the formula as you see it on the formula bar.

If the intent was to convert each address in a formula to a constant
and show it that way his is not the solution.
 
Thanks Jeff, The formula portion works fine but I also needed the "(" and
")" around the numbers. The Gord Dibben solution appears to work well also.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top