Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi - I would be really grateful if anybody knows a function to return the
formula contained in one cell to another cell as a text string? Thanks -- Sharon |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this tiny UDF:
Function textit(r As Range) As String textit = Chr(39) & r.Formula End Function If A1 has a formula, then =textit(A1) will display it -- Gary''s Student "Sharon" wrote: Hi - I would be really grateful if anybody knows a function to return the formula contained in one cell to another cell as a text string? Thanks -- Sharon |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Put this in a REGULAR code module and then just type =stringit(c4)
Function stringit(x) stringit = x.Formula End Function -- Don Guillett SalesAid Software "Sharon" wrote in message ... Hi - I would be really grateful if anybody knows a function to return the formula contained in one cell to another cell as a text string? Thanks -- Sharon |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There is no such beast but you can roll your own
http://www.mvps.org/dmcritchie/excel/formula.htm -- Regards, Peo Sjoblom http://nwexcelsolutions.com "Sharon" wrote in message ... Hi - I would be really grateful if anybody knows a function to return the formula contained in one cell to another cell as a text string? Thanks -- Sharon |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks to y'all!! Really hit the spot.
-- Sharon "Peo Sjoblom" wrote: There is no such beast but you can roll your own http://www.mvps.org/dmcritchie/excel/formula.htm -- Regards, Peo Sjoblom http://nwexcelsolutions.com "Sharon" wrote in message ... Hi - I would be really grateful if anybody knows a function to return the formula contained in one cell to another cell as a text string? Thanks -- Sharon |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula that will test text conditions in a single cell | Excel Worksheet Functions | |||
Matching Text with With Certain Criteria | Excel Worksheet Functions | |||
Finding a text string w/in a Cell | Excel Discussion (Misc queries) | |||
Match then lookup | Excel Worksheet Functions | |||
Formulas dealing with text data | Excel Worksheet Functions |