MsWiz, This little macro may do what you want. Open the workbook and
display the worksheet. Press Alt-F11 to go to the code editor. From
the menubar, select Insert, then Module, and paste this code in there.
Alt-F11 to return to the worksheet view. When you want to use it,
select the cells you want to show formulas, click Tools, then Macro,
then Macros. When the Macros form appears, the sub should be
highlighted. Click Run to run it or click Options if you want to
assign a short-cut key to it. It will toggle the selection back and
forth from values to formulas. HOWEVER, it places a space in front of
the formulas in order to show them, so they will not work while
displayed as formulas, a problem if other cells use these formulas in
their formulas. Hope it's of some help to you.
James
Sub ShowFormulas()
Dim cell As Range
For Each cell In Selection
If Left(cell.Formula, 1) = " " Then
cell.Formula = Right(cell.Formula, Len(cell.Formula) - 1)
Else
cell.Formula = " " & cell.Formula
End If
Next cell
End Sub