Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to display the formula and the result in the same worksheet so that
people can know what calculation has been used to obtain the given result. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Insert a Comment that gives the text of the Formula
HTH -- AP "Claudio Hartzstein" <Claudio a écrit dans le message de news: ... I want to display the formula and the result in the same worksheet so that people can know what calculation has been used to obtain the given result. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
As Ardus suggested:
Here are 2 macros (Put In Standard Module) 1) to Add All Existing Formulas to a CommentBox 2) to Remove All Comments <<Watch Out This removes ALL Comments (not just ones created by 1) above.. HTH Jim May Sub ShowFormulasInComments() Dim cell As Range Dim sh As Worksheet Dim i As Long Set sh = ActiveSheet For Each cell In ActiveSheet.UsedRange If cell.HasFormula Then cell.AddComment.Text Text:=cell.Formula End If Next cell End Sub Sub RemoveFormulasInComments() ActiveSheet.UsedRange.ClearComments End Sub "Ardus Petus" wrote in message : Insert a Comment that gives the text of the Formula HTH -- AP "Claudio Hartzstein" <Claudio a écrit dans le message de news: ... I want to display the formula and the result in the same worksheet so that people can know what calculation has been used to obtain the given result. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find text within cell then display text to left | Excel Discussion (Misc queries) | |||
Convert text in cell to a range name for formula | Excel Worksheet Functions | |||
Copy formula so destination displays formula as text | Excel Discussion (Misc queries) | |||
how does one convert text to a formula "average(A:A)" to =average( | Excel Worksheet Functions | |||
Convert Numeric into Text | Excel Worksheet Functions |