#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Printing Formulas

How do I print formulas in Excel 2007?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 833
Default Printing Formulas

Take the following action:-

1. Hit the F5 key.

2. Special . . . (lower left hand corner) / Formulas / OK.

3. Ctrl-P (to print) / hit the radio button called Selection.

If you Preview at this point you will see that all of the formulas will get
printed from here.

If my comments have helped please hit Yes.



"Tiger Fan" wrote:

How do I print formulas in Excel 2007?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Printing Formulas

All I see is the results of formulas.

Did you leave out a step?


Gord Dibben MS Excel MVP

On Tue, 15 Dec 2009 09:04:03 -0800, trip_to_tokyo
wrote:

Take the following action:-

1. Hit the F5 key.

2. Special . . . (lower left hand corner) / Formulas / OK.

3. Ctrl-P (to print) / hit the radio button called Selection.

If you Preview at this point you will see that all of the formulas will get
printed from here.

If my comments have helped please hit Yes.



"Tiger Fan" wrote:

How do I print formulas in Excel 2007?


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Printing Formulas

CTRL + `(backquote above Tab key)

This toggles you into formula view.

Print what you see.

If you wanted to use a macro and place all formulas, results and cell
addresses on another sheet for printing try this from John Walkenbach.

Sub ListFormulas()
'from John Walkenbach
Dim FormulaCells As Range, Cell As Range
Dim FormulaSheet As Worksheet
Dim Row As Integer
Dim WS As Worksheet
' Create a Range object for all formula cells
On Error Resume Next
Set FormulaCells = Range("A1").SpecialCells(xlFormulas, 23)

' Exit if no formulas are found
If FormulaCells Is Nothing Then
MsgBox "No Formulas."
Exit Sub
End If

' Add a new worksheet
Application.ScreenUpdating = False
Set FormulaSheet = ActiveWorkbook.Worksheets.Add
FormulaSheet.Name = "Formulas in " & FormulaCells.Parent.Name

' Set up the column headings
With FormulaSheet
Range("A1") = "Address"
Range("B1") = "Formula"
Range("C1") = "Value"
Range("A1:C1").Font.Bold = True
End With

' Process each formula
Row = 2
For Each Cell In FormulaCells
Application.StatusBar = Format((Row - 1) / FormulaCells.Count, "0%")
With FormulaSheet
Cells(Row, 1) = Cell.Address _
(RowAbsolute:=False, ColumnAbsolute:=False)
Cells(Row, 2) = " " & Cell.Formula
Cells(Row, 3) = Cell.Value
Row = Row + 1
End With
Next Cell

' Adjust column widths
FormulaSheet.Columns("A:C").Cells.WrapText = True ''AutoFit
Application.StatusBar = False
End Sub


Gord Dibben MS Excel MVP


On Tue, 15 Dec 2009 08:39:01 -0800, Tiger Fan
wrote:

How do I print formulas in Excel 2007?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Printing Formulas kezbo Excel Discussion (Misc queries) 3 December 1st 09 05:54 PM
Printing formulas GARY Excel Discussion (Misc queries) 4 November 20th 08 11:24 AM
Printing all the formulas hopebear Excel Discussion (Misc queries) 1 May 8th 07 09:51 PM
printing formulas PattiP Excel Discussion (Misc queries) 4 December 12th 05 09:29 PM
Printing formulas TUNGANA KURMA RAJU Excel Discussion (Misc queries) 7 November 28th 05 07:29 AM


All times are GMT +1. The time now is 04:28 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"