![]() |
Show a cell's formula in text format in a linked cell
I want to show the formula for a specific cell in text format in another cell.
For example, if cell A1 has a simple formula of "=10+64" (but only shows an answer of "74"), how can i link this cell to B1, so that B1 only shows as text "10+64" or " =10+64", instead of the actual answer? |
On Sun, 27 Jan 2013 23:28:44 +0000, TreeHugger1 wrote:
I want to show the formula for a specific cell in text format in another cell. For example, if cell A1 has a simple formula of "=10+64" (but only shows an answer of "74"), how can i link this cell to B1, so that B1 only shows as text "10+64" or " =10+64", instead of the actual answer? You can do this with a User Defined Function (UDF). To enter this User Defined Function (UDF), <alt-F11 opens the Visual Basic Editor. Ensure your project is highlighted in the Project Explorer window. Then, from the top menu, select Insert/Module and paste the code below into the window that opens. To use this User Defined Function (UDF), enter a formula like =showformula(A1) in B1. ====================== Function ShowFormula(rg As Range) As String ShowFormula = rg.Formula End Function ======================= |
All times are GMT +1. The time now is 08:25 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com