8/19/2010. Crystal Reports Beginner Training: Part I August 13, Crystal Report Trainings. Intro to Crystal Reports TODAY!

Size: px
Start display at page:

Download "8/19/2010. Crystal Reports Beginner Training: Part I August 13, 2010. Crystal Report Trainings. Intro to Crystal Reports TODAY!"

Transcription

1 Crystal Reports Beginner Training: Part I August 13, 2010 Tom Bedall, Pro Seniors, Inc. Crystal Report Trainings Intro to Crystal Reports TODAY! Will be recorded and made available for FREE Crystal Reports Basic Training: Part I Friday, August 13 th, 11am Pacific / 2pm Eastern Crystal Reports Basic Training: Part II Friday, August 20 th, 11am Pacific / 2pm Eastern 8 Free 30 day trial Purchasing Crystal Reports rials/index.epx Crystal Reports - $55 for nonprofits TechSoupMain&category_name=Business+Objects+Softwar e&page=1&cat1=business+objects&catcount=1 9 1

2 Choose the database & tables to include Choose the fields to display in the report Record Selection Select a subset of the database data for inclusion in the report Group the data If you are designing a grouped report 10 Sort, Summarize and Suppress the data Add grand totals, sub-totals, percentages and suppress immaterial data Add additional information Running Totals, Formulas & Text Boxes Add parameters End-user can choose what data to include Format the report Add color, lines, boxes, hyperlinks, etc. 11 Choose the database & tables to include Start Page > Blank Report > Database Expert Double Click Cases Table > OK Choose the fields to display in the report View > Field Explorer Double Click Database Fields Double Click Cases1 12 2

3 Right Click Database Fields Grouped order vs. alphabetical order Show Field Type Click & Drag Cases1 Fields Into Details Section case_id number user_id open_date close_date 13 Right Click Section Label Expanding a section Splitting a section Inserting a sub-section Deleting a sub-section Suppressing sections Fit section Changing section order 14 Refresh Report Report > Refresh Report Data (F5) Note number of records in status bar No filter means every database record included Note zoom controls on status bar 15 3

4 Record Selection Report > Select Expert > Record Limit data to Open Attorney Cases Choose field: Double click cases1.close_date Click Formula Editor button Type: IsNull({cases1.close_date}) Save and close > Ok > Refresh Data 16 The IsNull function Boolean value The Pika database supports null data values but others may not. Some databases default all empty field values to zero. If so, the IsNull function will not work if the active database does not support null values. Note: Zero and blank (empty or " ") are not null values. 17 The IsNull function Boolean value Note: This function must be used first in a formula for it to be evaluated properly. In general, when Crystal Reports encounters a null valued field in a formula, it immediately stops evaluating the formula and produces no value. If you want to handle null field values in your formula, you must explicitly do so using one of the special functions designed for handling them: IsNull, PreviousIsNull or NextIsNull 18 4

5 How many records now? Too many. Includes non-attorney cases Switch to Design tab Drag cases1.office into Detail section Switch to Preview Tab Note non-attorney cases in report 19 Edit Record Selection Formula Report > Select Expert > Record Include only Attorney cases in report Click New button > double click cases1.office Choose Is Equal To from drop-down Choose ATTY from drop-down Click formula window at bottom of dialog box Note formula. Click Ok button. Refresh data 20 How Many Records Now? Now we have correct cases in report Save report frequently File > Options > Reporting Tab > Auto Save Reports After Minutes 21 5

6 Group the data by user_id Report > Group Expert > double click cases1.user_id > Ok Click Design Tab Note new sections: Group Header #1& Group Footer #1 Note Group Tree in Preview Panel 22 Insert Summaries Right click cases1.case_id field in report > Insert > Summary Calculate this summary: Distinct Count Summary Location: Group Footer #1: cases1.user_id - A Click Ok. Repeat above and also check Show as a percentage of checkbox 23 Suppress Detail Section Right click Detail Section label > Suppress (No Drill- Down) Add User Table to Report Then can add user name fields to report 24 6

7 Database > Database Expert Double-click users table Note new tab: Links Note: Automatic Smart-Linking links the tables. Toggle on or off via File > Options > Database Tab > Last Checkbox: Automatic Smart-Linking 25 Linking: Very important Join direction: From Table (on Left) to the To Table (on Right) Inner Join: Default (only include records with data from both tables) (records drop out when you add To table fields to the report) Left Outer Join: (includes all records in the From table whether or not that record has corresponding data in the To table.) 26 Linking: Very important Do Left Outer Join: Same # of records: 161 Do Inner Join: 160 records drops the no-atty-assigned case. Why? No corresponding record in the To table. Two aspects of report that limit Db records: Record Selection Criteria (intentional) and Table Joins (unintentional) 27 7

8 Adding Activity Records (Time) to the report Build report from the smallest common denominator: Each case has multiple time records Each attorney has multiple cases Activity Table (link to) Cases Table (link to) Users Table 28 Add activities1.act_date and activities1.hours to Details Section Group all time records into a case Report > Group Expert > double click activities1.act_date > Ok Save the report 29 In Design Tab, add the summary information to Group Footer #2 that we want to show for each case Add Case Number and Open date to Group Footer #2 Add activities1.act_date to Group Footer #2 Note that because activities1.act_date is sorted ascending, activities1.act_date in Group Footer #2 is the latest activity date 30 8

9 Add total case time to Group Footer #2 Insert Summary Right click activities1.hours field in Details Section > Insert > Summary Calculate this summary: Sum Summary Location: Group #2: cases1.case_id - A Click Ok. 31 Suppress Details Section Right click Detail Section label > Suppress (No Drill-Down) Suppress Group Header #2 Right click Group Header #2 Section label > Suppress (No Drill-Down) 32 Add Legal Problem and Client First Name to Group Footer #2 Database > Database Expert Double-click Contacts Table and Menu Legal Problem Table Click on Links tab Join with Left Outer Join: cases1.problem to menu_problem_20081.value 33 9

10 Join with Inner Join: cases1.client_id to contacts1.contact_id Ok out of Database Expert Add contacts1.first_name and menu_problem_20081.label to Group Footer #2 34 Add Time period Aged61To90 to report Field Explorer > Right Click Formula Fields > New > Type: Time 61 to 90 > Ok Type the following formula: IF {activities1.act_date} = Aged61To90Days THEN {activities1.hours} ELSE 0 The IF expression is one of the most useful control structures. It allows you to evaluate an expression if a condition is true and evaluate a different expression otherwise. 35 Note: The correct Crystal syntax for IF statements is IF <condition> THEN < expression1> ELSE < expression2>, where < condition >, < expression1>, and < expression2> are all single expressions. If you have multiple conditions, convert them into a single expression by surrounding them in parentheses

11 Save and Close Formula Editor Click and drag Formula Time 61 to 90 into Detail Section of Report Insert Summary of Time 61 to 90 (sum) into Group Footer #2 Create two more formulas by repeating the above for the functions Aged31To60Days and Aged0To30Days; add them to the report and insert summaries. 37 Suppress time period summaries when they equal zero Right Click Time in 0 to 30 formula summary in Group Footer #2 > Format Field > Common Tab > Suppress checkbox conditional formula button > Type: Sum ({@Aged 0 to 30}, {cases1.case_id}) = 0 Repeat for other two time period summaries. 38 Change report to display only one attorney at a time Add Attorney Parameter to Report Field Explorer > Right Click Parameter Fields > New Name: Attorney List of Values: Dynamic Click here to add item: users1.user_id Description: users1.last_name Parameters: Click to create parameter 39 11

12 Add Attorney Parameter to Report (cont d) Prompt Text: Choose Attorney Name Sort Order: Ascending by description Prompt With Description Only: True Click Ok Drag and drop Attorney Parameter Field into Report Header Section to view the Parameter Value 40 Add Attorney Parameter to Record Selection Formula to only include cases of the Attorney selected via the Parameter. Report > Select Expert > Record > Formula Editor button Type: ( {cases1.user_id} = {?Attorney} or {cases1.cocounsel1} = {?Attorney} or {cases1.cocounsel2} = {?Attorney}) ) 41 Save and Close Ok and Refresh Data Note that report is listing all cases where the Parameter Attorney is listed as either Primary Counsel, Co-Counsel1 or Co-Counsel2. However the cases are still grouped by Primary Counsel so we need to change the grouping formula to group by the field containing the Parameter Attorney

13 Create a Grouping Formula Field Explorer > Right Click Formula Fields > New > Type: Grouping Formula > Ok Type the following formula: If IsNull({contacts1.first_name}) then "Projects" else If {cases1.user_id} = {?Attorney} then "Primary Counsel" else If {cases1.cocounsel1} = {?Attorney} then "Co-Counsel 1" else If {cases1.cocounsel2} = {?Attorney} then "Co-Counsel 2" Click the Close and Save button 43 Delete Group-by cases1.user_id and add Group-by Grouping Formula Report > Group Expert Group by window: remove cases1.user_id field Add Grouping Formula field > Move Grouping Formula field above cases1.cases_id by using blue arrow in top right corner > Ok button 44 Note order of groups in report are ascending. Create specific grouping order. Report > Group Expert > double click Grouping Formula in Group by window > change in ascending order to in specified order > Drop down Named Group and choose specified group order > Ok > Ok 45 13

14 Add Sub-Totals to groups Right click cases1.number field in report > Insert > Summary Calculate this summary: Distinct Count Summary Location: Group Footer #1: cases1.user_id - A Click Ok 46 Add Hyperlink from Case Number Field to Pika Case Note Screen Right Click Case Number Field in Report > Format Field > Hyperlink Tab > Hyperlink Type: Click A Website on the Internet > Hyperlink Information: Website Address: Delete > Click Formula Editor Button Type the following formula: " + "/cases.php/" + ToText ({cases1.case_id},0,"") Click the Close and Save button 47 Click the Close and Save button Font Tab Style: Bold Color: Blue Effects: Check Underline box Ok button 48 14

15 Add Months Open to Group Footer #2 Field Explorer > Right Click Formula Fields > New > Type: Months Open > Ok Type the following formula: (CurrentDate - {cases1.open_date}) / (365/12) Click the Close and Save button Drag and drop the Months Open Formula field into Group Footer #2. 49 Add Alternate Row Background Color The easiest way to accomplish this is to create a Running Total count of Group Footer #2. The first GF#2 is 1, the second is 2, etc. Then create a formula that makes the odd Group Footers one color and the even Group Footers another color. 50 Add Running Total Field Explorer > Right Click Running Total Fields > New > Running Total Name: GF2 Running Total Field to Summarize: cases1.case_id Type of Summary: Distinct Count Ok Drag and drop GF2 Running Total field into Group Footer #

16 Add Conditional GF2 Background Color using an even-odd formula Right Click Group Footer #2 Label > Section Expert > Click Color Tab in right window > Click Formula Editor button Type: If Remainder ({#GF2 Running Total},2) = 0 then Color (255, 255, 155) else NoColor Click Save and Close button > Ok 52 The Remainder Function has the following components: (numerator, denominator). Crystal Reports performs the division internally, determines the whole number quotient and the remainder, and returns only the remainder. In our case, the remainder is zero for an even number and.5 for an odd number. 53 Add No Time Warning Box to Report Field Explorer > Right Click Formula Fields > New > Formula Name: Warning Box Type the following: If (Sum ({@Aged 0 to 30}, {cases1.case_id}) + Sum ({@Time 31 to 60}, {cases1.case_id}) + Sum ({@Time 61 to 90}, {cases1.case_id})) = 0 then "No Time In 90 Days" else 54 16

17 If (Sum 0 to 30}, {cases1.case_id}) + Sum ({@Time 31 to 60}, {cases1.case_id})) = 0 then "No Time In 60 Days" else If Sum ({@Aged 0 to 30}, {cases1.case_id}) = 0 then "No Time In 30 Days" else "" Save and close Drag and drop Warning Box formula field into Group Footer #2 55 Note that Formulas are Hierarchical Crystal Reports stops when it encounters a True statement, so it is important to make sure the order of the expressions within the formula is correct if expression 2 and 3 is a subset of expression 1, then the correct order is set, subset, sub-subset. 56 Format Different Formula Background Colors for Different Warning Messages Right Click Warning Box Formula Field in Report > Format Field > Boarder Tab > Background > Background Conditional Formula Button Type the following: If {@Warning Formula} = "No Time In 90 Days" then crred else If {@Warning Formula} = "No Time In 60 Days" then crblue else If {@Warning Formula} = "No Time In 30 Days" then crsilver else crnocolor 57 17

18 Save and Close Font Tab Style: Bold Color: White Border Tab Left, Right, Top & Bottom: Single Ok button 58 Add Report Title Insert > Text Object > Click and drag Cursor cross across Report Header Section to create a text box Double click inside text box > Type: Open Case Data of Field Explorer > Double Click Special Fields > Drag and drop Data Date field into text box in Report Header and drop following text 59 Double click Text box to get to text and click Data Date field to highlight it, then right click Data Date field > Format {Data Date} > Choose Monday, March 1, 1999 > Ok Click text box and using small blue square handles, click and drag text box so that it stretches from left to right report margins and is about.5 inches in height. Click on text box and use buttons on formatting menu bar to increase font to 28 point type and center the text

19 Add Attorney Name to Report Title Right click Report Header Section label > Insert Section Below Repeat text box creation above but leave text box content empty Field Explorer > Database Fields > users1 table > Drag and drop first_name and last_name fields into text box in Report Header and separate them by a space 61 Format Group Name Fields Right click Group #1 Name field in Group Header #1 Section > Format Field > Border Tab > Check Background checkbox > Choose Silver from the dropdown > Paragraph Tab > Indentations: First Line: 0.1 > Ok 62 Add Column Titles Add small text box to Page Header Section Add text and format background color, font color Copy text box by right clicking text box > copy > right click Page Header Section: Paste > change background color > change text Repeat above for other Column Titles 63 19

20 Thank You - Don t forget to complete our survey QUESTIONS? Contact Information Kathleen Brockel kathleen@lsntap.org Tom Bedall tbedall@proseniors.org 20

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together

2. Building Cross-Tabs in Your Reports Create a Cross-Tab Create a Specified Group Order Filter Cross-Tab by Group Keep Groups Together Crystal Reports Level 2 Computer Training Solutions Course Outline 1. Creating Running Totals Create a Running Total Field Modify a Running Total Field Create a Manual Running Total on Either Detail Data

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Creating Custom Crystal Reports Tutorial

Creating Custom Crystal Reports Tutorial Creating Custom Crystal Reports Tutorial 020812 2012 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Business Objects 4.1 Quick User Guide

Business Objects 4.1 Quick User Guide Business Objects 4.1 Quick User Guide Log into SCEIS Business Objects (BOBJ) 1. https://sceisreporting.sc.gov 2. Choose Windows AD for Authentication. 3. Enter your SCEIS User Name and Password: Home Screen

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

Computer Training Centre University College Cork. Excel 2013 Pivot Tables

Computer Training Centre University College Cork. Excel 2013 Pivot Tables Computer Training Centre University College Cork Excel 2013 Pivot Tables Table of Contents Pivot Tables... 1 Changing the Value Field Settings... 2 Refreshing the Data... 3 Refresh Data when opening a

More information

Crystal Reports Secrets. 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers

Crystal Reports Secrets. 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers Crystal Reports Secrets 20 Secret Shortcuts and Workarounds for Crystal Reports Designers and Developers This guide is for your personal use, compliments of Business Objects Education Services. It contains

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

More information

Crystal Reports. Overview. Contents. Columnar Drill-Down Report

Crystal Reports. Overview. Contents. Columnar Drill-Down Report Crystal Reports Overview This document explains how to create a columnar report in Crystal Reports (CR). It will also explain how to create drill-down levels in a columnar report. Although this document

More information

BUSINESS OBJECTS XI WEB INTELLIGENCE

BUSINESS OBJECTS XI WEB INTELLIGENCE BUSINESS OBJECTS XI WEB INTELLIGENCE SKW USER GUIDE (Skilled Knowledge Worker) North Carolina Community College Data Warehouse Last Saved: 3/31/10 9:40 AM Page 1 of 78 Contact Information Helpdesk If you

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

TheFinancialEdge. Crystal Reports Tutorial

TheFinancialEdge. Crystal Reports Tutorial TheFinancialEdge Crystal Reports Tutorial 101911 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located

More information

Getting Started with Crystal Reports Session Description:

Getting Started with Crystal Reports Session Description: Session Description: If you would like to create customized reports look no further. This session will introduce you to the tools needed to write basic reports using the Report Wizard and Blank Report

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu http://www.csun.edu/training TABLE

More information

Utilizing Microsoft Access Forms and Reports

Utilizing Microsoft Access Forms and Reports Utilizing Microsoft Access Forms and Reports The 2014 SAIR Conference Workshop #3 October 4 th, 2014 Presented by: Nathan Pitts (Sr. Research Analyst The University of North Alabama) Molly Vaughn (Associate

More information

WHAT S NEW IN OBIEE 11.1.1.7

WHAT S NEW IN OBIEE 11.1.1.7 Enterprise Data Management OBI Author Training, March 2015 WHAT S NEW IN OBIEE 11.1.1.7 NEW PRESENTATION FEATURES VIEWS 1) Recommended Visualizations Feature When you create a new view, OBIEE looks at

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Instructions for Formatting MLA Style Papers in Microsoft Word 2010

Instructions for Formatting MLA Style Papers in Microsoft Word 2010 Instructions for Formatting MLA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp.

Enhanced Formatting and Document Management. Word 2010. Unit 3 Module 3. Diocese of St. Petersburg Office of Training Training@dosp. Enhanced Formatting and Document Management Word 2010 Unit 3 Module 3 Diocese of St. Petersburg Office of Training Training@dosp.org This Page Left Intentionally Blank Diocese of St. Petersburg 9/5/2014

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents,

More information

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1

HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 HRS 750: UDW+ Ad Hoc Reports Training 2015 Version 1.1 Program Services Office & Decision Support Group Table of Contents Create New Analysis... 4 Criteria Tab... 5 Key Fact (Measurement) and Dimension

More information

Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007

Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007 Using and creating Crosstabs in Crystal Reports Juri Urbainczyk 27.08.2007 Using an creating Crosstabs in Crystal Reports... 1 What s a crosstab?... 1 Usage... 2 Working with crosstabs... 2 Creation...

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

More information

Kingsoft Spreadsheet 2012

Kingsoft Spreadsheet 2012 Kingsoft Spreadsheet 2012 Kingsoft Spreadsheet is a flexible and efficient commercial spreadsheet application. It is widely used by professionals in many fields such as: Business, Finance, Economics and

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

More information

Excel 2003 Tutorials - Video File Attributes

Excel 2003 Tutorials - Video File Attributes Using Excel Files 18.00 2.73 The Excel Environment 3.20 0.14 Opening Microsoft Excel 2.00 0.12 Opening a new workbook 1.40 0.26 Opening an existing workbook 1.50 0.37 Save a workbook 1.40 0.28 Copy a workbook

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Seagate Crystal Reports Designer

Seagate Crystal Reports Designer Objectives Contents This document is intended to assist you in creating or modifying a report in the Crystal Reports Designer, Seagate Info Report Designer, or the Design tab of Seagate Analysis that exports

More information

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18

Basic Pivot Tables. To begin your pivot table, choose Data, Pivot Table and Pivot Chart Report. 1 of 18 Basic Pivot Tables Pivot tables summarize data in a quick and easy way. In your job, you could use pivot tables to summarize actual expenses by fund type by object or total amounts. Make sure you do not

More information

Spreadsheet - Introduction

Spreadsheet - Introduction CSCA0102 IT and Business Applications Chapter 6 Spreadsheet - Introduction Spreadsheet A spreadsheet (or spreadsheet program) is software that permits numerical data to be used and to perform automatic

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services

Enterprise Reporting Advanced Web Intelligence Training. Enterprise Reporting Services Enterprise Reporting Advanced Web Intelligence Training Enterprise Reporting Services Table of Contents Chapter Page 1 Overview 4 2 Web Intelligence Access 8 3 BI Launch Pad Navigation 12 4 Nested Query

More information

Parameter Fields and Prompts. chapter

Parameter Fields and Prompts. chapter Parameter Fields and Prompts chapter 23 Parameter Fields and Prompts Parameter and prompt overview Parameter and prompt overview Parameters are Crystal Reports fields that you can use in a Crystal Reports

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

Crystal Reports Designer

Crystal Reports Designer Overview This document is intended to assist you in creating or modifying a report in the Crystal Reports Designer, Seagate Info Report Designer, or the Design tab of Seagate Analysis that exports successfully

More information

Business Objects. Report Writing - CMS Net and CCS Claims

Business Objects. Report Writing - CMS Net and CCS Claims Business Objects Report Writing - CMS Net and CCS Claims Updated 11/28/2012 1 Introduction/Background... 4 Report Writing (Ad-Hoc)... 4 Requesting Report Writing Access... 4 Java Version... 4 Create A

More information

Developing Own Crystal Reports

Developing Own Crystal Reports Developing Own Crystal Reports 1.1.1 The Report Creation Wizard ShipWeight is delivered with a set of sample reports to be used with the Report Viewer. In many cases, the easiest way of creating your own

More information

Advanced Microsoft Excel 2010

Advanced Microsoft Excel 2010 Advanced Microsoft Excel 2010 Table of Contents THE PASTE SPECIAL FUNCTION... 2 Paste Special Options... 2 Using the Paste Special Function... 3 ORGANIZING DATA... 4 Multiple-Level Sorting... 4 Subtotaling

More information

MS Word 2007 practical notes

MS Word 2007 practical notes MS Word 2007 practical notes Contents Opening Microsoft Word 2007 in the practical room... 4 Screen Layout... 4 The Microsoft Office Button... 4 The Ribbon... 5 Quick Access Toolbar... 5 Moving in the

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

1.5 MONITOR. Schools Accountancy Team INTRODUCTION

1.5 MONITOR. Schools Accountancy Team INTRODUCTION 1.5 MONITOR Schools Accountancy Team INTRODUCTION The Monitor software allows an extract showing the current financial position taken from FMS at any time that the user requires. This extract can be saved

More information

Using an Access Database

Using an Access Database A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

Microsoft Excel 2010 Pivot Tables

Microsoft Excel 2010 Pivot Tables Microsoft Excel 2010 Pivot Tables Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by

APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by APPLYING BENFORD'S LAW This PDF contains step-by-step instructions on how to apply Benford's law using Microsoft Excel, which is commonly used by internal auditors around the world in their day-to-day

More information

Business Analytics Enhancements June 2013

Business Analytics Enhancements June 2013 Business Analytics Enhancements June 03 Enhancement Summary June 03 Item # Site Location Enhancement Welcome Page New style - Fonts and colors have changed as a result of the enhanced reporting engine

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010

Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010 Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010 TABLE OF CONTENTS WHAT IS A STYLE?... 2 VIEWING AVAILABLE STYLES IN THE STYLES GROUP... 2 APPLYING STYLES FROM THE STYLES GROUP...

More information

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

Page Numbering for a Thesis or Dissertation

Page Numbering for a Thesis or Dissertation Page Numbering for a Thesis or Dissertation Tip: Add Page Numbering to your document after you are finished making all edits. After the page numbering has been added, then add the Table of Contents and/or

More information

MICROSOFT ACCESS 2007 BOOK 2

MICROSOFT ACCESS 2007 BOOK 2 MICROSOFT ACCESS 2007 BOOK 2 4.1 INTRODUCTION TO ACCESS FIRST ENCOUNTER WITH ACCESS 2007 P 205 Access is activated by means of Start, Programs, Microsoft Access or clicking on the icon. The window opened

More information

HOW TO PAGE A DOCUMENT IN MICROSOFT WORD

HOW TO PAGE A DOCUMENT IN MICROSOFT WORD 1 HOW TO PAGE A DOCUMENT IN MICROSOFT WORD 1 PAGING A WHOLE DOCUMENT FROM 1 TO Z (Including the first page) 1.1 Arabic Numbers (a) Click the Insert tab. (b) Go to the Header & Footer Section and click

More information

Excel 2007: Basics Learning Guide

Excel 2007: Basics Learning Guide Excel 2007: Basics Learning Guide Exploring Excel At first glance, the new Excel 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Formatting Text in Microsoft Word

Formatting Text in Microsoft Word Formatting Text - 1 of 44 Formatting Text in Microsoft Word Page Setup 2 Centering Text 3 Line Spacing 4 Paragraph Spacing 4 Indenting a Paragraph s First Line 5 Hanging Indentation 5 Indenting an Entire

More information

Basic Formatting of a Microsoft Word. Document for Word 2003 and 2007. Center for Writing Excellence

Basic Formatting of a Microsoft Word. Document for Word 2003 and 2007. Center for Writing Excellence Basic Formatting 1 Basic Formatting of a Microsoft Word Document for Word 2003 and 2007 Center for Writing Excellence Updated April 2009 Basic Formatting 2 Table of Contents GENERAL FORMATTING INFORMATION...

More information

Microsoft Word 2013 Tutorial

Microsoft Word 2013 Tutorial Microsoft Word 2013 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010.

Search help. More on Office.com: images templates. Here are some basic tasks that you can do in Microsoft Excel 2010. Page 1 of 8 Excel 2010 Home > Excel 2010 Help and How-to > Getting started with Excel Search help More on Office.com: images templates Basic tasks in Excel 2010 Here are some basic tasks that you can do

More information

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 University of North Carolina at Chapel Hill Libraries Carrboro Cybrary Chapel Hill Public Library Durham County Public Library DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites

More information

Microsoft Access 2000

Microsoft Access 2000 Microsoft Access 2000 Level 1 Region 4 Teaching, Learning and Technology Center Kaplan, LA Activity 1 Creating a Database 1. Open Microsoft Access 2000 a. Click on START, highlight Programs, point and

More information

1.5 MONITOR FOR FMS 6 USER GUIDE

1.5 MONITOR FOR FMS 6 USER GUIDE 1.5 MONITOR FOR FMS 6 USER GUIDE 38 Introduction Monitor for FMS6 V1.2 is an upgrade to the previous version of Monitor. The new software is written for 32-bit operating systems only and can therefore

More information

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS

CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS CONVERSION GUIDE Financial Statement Files from CSA to Accounting CS Introduction and conversion program overview... 1 Conversion considerations and recommendations... 1 Conversion procedures... 2 Data

More information

Overview What is a PivotTable? Benefits

Overview What is a PivotTable? Benefits Overview What is a PivotTable? Benefits Create a PivotTable Select Row & Column labels & Values Filtering & Sorting Calculations Data Details Refresh Data Design options Create a PivotChart Slicers Charts

More information

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

More information

Sophos Reporting Interface Creating Reports using Crystal Reports 2008

Sophos Reporting Interface Creating Reports using Crystal Reports 2008 Sophos Reporting Interface Creating Reports using Crystal Reports 2008 Creating Reports using Crystal Reports 2008 This document describes how to use Crystal Reports to create reports from data provided

More information

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint

Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint Maximizing the Use of Slide Masters to Make Global Changes in PowerPoint This document provides instructions for using slide masters in Microsoft PowerPoint. Slide masters allow you to make a change just

More information

Excel 2007 - Using Pivot Tables

Excel 2007 - Using Pivot Tables Overview A PivotTable report is an interactive table that allows you to quickly group and summarise information from a data source. You can rearrange (or pivot) the table to display different perspectives

More information

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create.

To reuse a template that you ve recently used, click Recent Templates, click the template that you want, and then click Create. What is Excel? Applies to: Excel 2010 Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

Crystal Reports Designer Version 10

Crystal Reports Designer Version 10 Crystal Reports Designer Version 10 Exporting to Microsoft Excel Overview Contents This document is intended to assist you in creating or modifying a report in Crystal Reports Designer, version 10, that

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Instructions for Formatting APA Style Papers in Microsoft Word 2010

Instructions for Formatting APA Style Papers in Microsoft Word 2010 Instructions for Formatting APA Style Papers in Microsoft Word 2010 To begin a Microsoft Word 2010 project, click on the Start bar in the lower left corner of the screen. Select All Programs and then find

More information

Participant Guide RP301: Ad Hoc Business Intelligence Reporting

Participant Guide RP301: Ad Hoc Business Intelligence Reporting RP301: Ad Hoc Business Intelligence Reporting State of Kansas As of April 28, 2010 Final TABLE OF CONTENTS Course Overview... 4 Course Objectives... 4 Agenda... 4 Lesson 1: Reviewing the Data Warehouse...

More information

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010

Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Microsoft Word 2010 Prepared by Computing Services at the Eastman School of Music July 2010 Contents Microsoft Office Interface... 4 File Ribbon Tab... 5 Microsoft Office Quick Access Toolbar... 6 Appearance

More information

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT

WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT WHAT S NEW IN WORD 2010 & HOW TO CUSTOMIZE IT The Ribbon... 2 Default Tabs... 2 Contextual Tabs... 2 Minimizing and Restoring the Ribbon... 3 Customizing the Ribbon... 3 A New Graphic Interface... 5 Live

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Site Maintenance. Table of Contents

Site Maintenance. Table of Contents Site Maintenance Table of Contents Adobe Contribute How to Install... 1 Publisher and Editor Roles... 1 Editing a Page in Contribute... 2 Designing a Page... 4 Publishing a Draft... 7 Common Problems...

More information

Advanced Word for Windows

Advanced Word for Windows Advanced Word for Windows Version: 2002 Academic Computing Support Information Technology Services Tennessee Technological University September 2003 1. Opening Word for Windows In the PC labs, click on

More information

Elisabetta Zodeiko 2/25/2012

Elisabetta Zodeiko 2/25/2012 PRINCETON UNIVERSITY Report Studio Introduction Elisabetta Zodeiko 2/25/2012 Report Studio Introduction pg. 1 Table of Contents 1. Report Studio Overview... 6 Course Overview... 7 Princeton Information

More information

Eloqua Insight: Advanced Analyzer User Guide

Eloqua Insight: Advanced Analyzer User Guide Eloqua Insight: Advanced Analyzer User Guide Table of Contents About this User Guide... 5 Introduction to Analyzer User... 6 Beyond Basic Grids and Graphs... 6 The Benefits of Eloqua Insight... 6 Reporting

More information

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field.

6. If you want to enter specific formats, click the Format Tab to auto format the information that is entered into the field. Adobe Acrobat Professional X Part 3 - Creating Fillable Forms Preparing the Form Create the form in Word, including underlines, images and any other text you would like showing on the form. Convert the

More information

USER GUIDE. Unit 5: Tools & Modules. Chapter 3: Forms & Surveys

USER GUIDE. Unit 5: Tools & Modules. Chapter 3: Forms & Surveys USER GUIDE Unit 5: Tools & Modules Chapter 3: Schoolwires Centricity Version 4.0 TABLE OF CONTENTS Introduction... 1 Audience and Objectives... 1 Major Components of a Form or Survey... 2 Overview... 2

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

USING MICROSOFT WORD 2008(MAC) FOR APA TASKS

USING MICROSOFT WORD 2008(MAC) FOR APA TASKS USING MICROSOFT WORD 2008(MAC) FOR APA TASKS MS WORD 2008(MAC), GENERAL TIPS Backspace and Delete The keyboard has two delete keys: Backspace and Delete. What s the difference? The Backspace key deletes

More information

NAVIGATION TIPS. Special Tabs

NAVIGATION TIPS. Special Tabs rp`=j~êëü~ää=påüççä=çñ=_ìëáåéëë Academic Information Services Excel 2007 Cheat Sheet Find Excel 2003 Commands in Excel 2007 Use this handout to find where Excel 2003 commands are located in Excel 2007.

More information

Joomla Article Advanced Topics: Table Layouts

Joomla Article Advanced Topics: Table Layouts Joomla Article Advanced Topics: Table Layouts An HTML Table allows you to arrange data text, images, links, etc., into rows and columns of cells. If you are familiar with spreadsheets, you will understand

More information

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc.

Sample- for evaluation purposes only. Advanced Crystal Reports. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2011 Advanced Crystal Reports TeachUcomp, Inc. it s all about you Copyright: Copyright 2011 by TeachUcomp, Inc. All rights reserved.

More information

Taking Advantage of Crystal Reports

Taking Advantage of Crystal Reports What You Will Need ArcGIS 8.3 (ArcInfo, ArcEditor, or ArcView license) with Crystal Reports installed Sample data downloaded from ArcUser Online Taking Advantage of Crystal Reports In addition to maps,

More information