Hi Marie,
Printing the formula at the end, or printing the formula view is not as
useful in my mind as being able to look at the completed spreadsheet
and reference sample formulas printed on the same page from the worksheet.
See GetFormula in (look for #install for installation instructions)
http://www.mvps.org/dmcritchie/excel/formula.htm
Function GetFormula(Cell)
GetFormula = Cell.Formula
End Function
The following variation includes the cell address as a descriptor:
Function GetFormulaD(Cell)
GetFormulaD = Cell.Address(0, 0) & ": " & Cell.Formula
End Function
usage:
=GetFormulaD(B14)
=personal.xls!GetFormulaD(b14)
Page also has functions to get the cell format, conditional format, font information,
and has links for printing at end similar to at least one of your other replies.