Book

Suggestions


Enter your email address:

Delivered by FeedBurner


Home Page

Bloglines

1906
CelebrateStadium
2006


OfficeZealot

Scobleizer

TechRepublic

AskWoody

SpyJournal












Subscribe here
Add to 

My Yahoo!
This page is powered by Blogger. Isn't yours?

Host your Web site with PureHost!


eXTReMe Tracker
  Web http://www.klippert.com



  Friday, May 29, 2009 – Permalink –

Report Manager

Define Print & View Areas


The Excel 2000 Report Manager add-in is not included with Excel 2002+, as was the case with previous versions of Excel.

To use it, you must first download the Excel 2002 Report Manager add-in from Downloads on Microsoft Office Online. Follow the instructions on the Downloads page to install the Report Manager.
(For 2007 see Support.Microsoft.com)

from Microsoft Office Online


"Using the Report Manager add-in program, you can combine worksheets , views (a set of display and print settings that you can name and apply to a workbook. You can create more than one view of the same workbook without saving separate copies of the workbook.), and scenarios (a named set of input values that you can substitute in a worksheet model.) into printable reports. For example, if you have a Best Case and a Worst case scenario, a Summary view, and a Details view, you can create a report that presents the Best Case scenario in the Details view and another report that presents the Best Case Scenario in the Summary view. Reports that you create are automatically saved with your workbook so that you can print them at any time."


Note If the Report Manager is not available on the View menu after downloading the add-in, click Add-ins on the Tools menu, and then select Report Manager.

You can use the Report Manager to do the following:

Create a report for printing

  1. On the View menu, click Report Manager.
  2. Click Add.
  3. In the Report Name box, type a name for the report.
  4. In the Sheet box, click the sheet you want to use for the first section of the report.
  5. Do one of the following:
    • To use a view for the first section of the report, select the View check box, and then click the view in the View box.
    • To use a scenario for the first section of the report, select the Scenario check box, and then click the scenario in the Scenario box.
  6. Click Add to enter the view or scenario as a section in the Sections in this Report box.
  7. Repeat step 5 and 6 until you've created all of the sections you want in the report.
  8. To change the order of the sections, in the Sections in this report box, click the section you want to move, and then click either Move Up or Move Down.
  9. To number the pages of the report consecutively, select the Use Continuous Page Numbers check box.
Note Microsoft Excel prints sections of a report in the order in which they're listed in the Sections in this report box.

Edit a report for printing

  1. On the View menu, click Report Manager.
  2. In the Reports box, click the report you want to edit, and then click Edit.
  3. Do one or more of the following:
    • To add a new section, click the sheet, view, and scenario you want under Section to Add, and then click Add.
    • To delete a section, click the section in the Sections in this report box, and then click Delete.
    • To change the order of the sections, in the Sections in this report box, click the section you want to move, and then click either Move Up or Move Down.
    • To number the pages of the report consecutively, select the Use Continuous Page Numbers check box.
    Note Microsoft Excel prints sections of a report in the order in which they're listed in the Sections in this report box.

Print a report

  1. On the View menu, click Report Manager.
  2. In the Reports box, click the report you want to print.
  3. Click Print.
  4. In the Copies box, type the number of copies you want to print.
Also see: Template Wizard with Data Tracking




See all Topics

Labels: ,


<Doug Klippert@ 3:34 AM

Comments: Post a Comment


  Tuesday, May 26, 2009 – Permalink –

Name that Range

How to use names in Excel


Named ranges are one of the more powerful tools in Excel.

Jan Karel Pieterse of JKP Application Development Services has written a tutorial that will help you understand this technique.

Here are some of the chapter titles:

  • How To Define Range Names

  • How To Use Range Names

  • Absolute And Relative Addressing

  • The Context Of Names

  • Special Names

  • A Step Further: A Formula In A Defined Name

  • Dynamic Names

  • Passing Arguments To A Defined Name Formula

  • Bugs in Excel's Name Object
Range Names in Excel




See all Topics

Labels: , ,


<Doug Klippert@ 3:54 AM

Comments: Post a Comment


  Tuesday, May 19, 2009 – Permalink –

UDF is not a Baby Alien

Things should to function


Frank Rice has written a "show how" about creating functions that are not included in the box.


"Excel allows you to create custom functions, called "User Defined Functions" (UDF's) that can be used the same way you would use SUM(), VLOOKUP, or other built-in Excel functions.
The Excel user who wishes to use advanced mathematics or perform text manipulation is often seriously disappointed by Excel's limited library of formulas and functions. A UDF is simply a function that you create yourself with VBA.

The following is a sample that is a good candidate for a UDF:
Function CtoF(Centigrade)
CtoF = Centigrade * 9 / 5 + 32
End Function

In the Worksheet you would enter something like:
=CtoF(A1)


frice's Weblog

Here are some other links:

Vertex42.com:
User Defined Functions


Support.Microsoft.com:
Functions to Calculate Light Years




See all Topics

Labels: , ,


<Doug Klippert@ 3:41 AM

Comments: Post a Comment


  Friday, May 15, 2009 – Permalink –

Tabs with the Number of the Week

Count to 52



Excel no longer has a theoretical limit on the number of worksheets in a workbook. One common use of this ability is to add a worksheet for each week in the year.

Here's a macro that does the trick:
Sub YearWorkbook()
Dim iWeek As Integer
Dim sht As Variant
Application.ScreenUpdating = False
Worksheets.Add After:=Worksheets(Worksheets.Count), _
Count:=(52 - Worksheets.Count)
iWeek = 1
For Each sht In Worksheets
sht.Name = "Week " & Format(iWeek, "00")
iWeek = iWeek + 1
Next sht
Application.ScreenUpdating = True
End Sub

ExcelTips.VitalNews.com:
Naming tabs for weeks




See all Topics

Labels: , ,


<Doug Klippert@ 3:58 AM

Comments: Post a Comment


  Friday, May 08, 2009 – Permalink –

Data from the Other Sheet

Sometimes we must go next door


Here is a discussion about how to use data that may be on a different worksheet, or another workbook.


Getting data from other sheets can be very easy: or it can be very hard, it all depends on what you need to do. This article looks at some of the ways you can get data from other sheets.

  • The basics
  • Using the Indirect function
  • Back to the old school, XLM! (previous and next sheet)
  • VBA user defined functions (previous and next sheet)
  • Links
Methods In Excel

Also: BetterSolutions.com
Cell References




See all Topics

Labels: ,


<Doug Klippert@ 3:14 AM

Comments: Post a Comment


  Wednesday, May 06, 2009 – Permalink –

Who was that font I saw you with last night?

That was no font, that was my typeface


You can find the Fonts supplied with some Microsoft products
Select a product name from the list to get a list of fonts supplied with that product.

Microsoft's Typography is an interesting site to poke around in.

Here are some books I use for reference material:

Words into Type

by Marjorie E. Skillin, Robert Malcolm Gay ISBN 0139642625


Stop Stealing Sheep & Find Out How Type Works


by Erik Spiekermann, E.M Ginger ISBN 0201703394


The Elements of Typographic Style

by Robert Bringhurst ISBN 0881791326

A font can be defined as a collection of characters with the same style and size. A typeface is the design of the characters regardless of size or style. The terms are used interchangeably today.




See all Topics

Labels:


<Doug Klippert@ 3:14 AM

Comments: Post a Comment