Microsoft' Excel & Access Integration

Size: px
Start display at page:

Download "Microsoft' Excel & Access Integration"

Transcription

1 Microsoft' Excel & Access Integration with Office 2007 Michael Alexander and Geoffrey Clark J1807 ; pwiueyb Wiley Publishing, Inc.

2 Contents About the Authors Acknowledgments Introduction Part I: Basic Integration Techniques 1 Chapter 1: Getting Excel Data into Access 3 Differences Between Access and Excel 4 Different Types of Excel Spreadsheets 4 The Excel Worksheet in Report Format 4 The Excel Worksheet in Flat File Format 5 The Excel Worksheet in Indexed List Format 6 The Access Table 8 The Table in the Datasheet View 8 The Table in the Design View 8 Different Types of Data 9 Table and Field Naming Conventions 11 Bringing Your Excel Data into Access 11 Importing a Worksheet into a New Table 11 Linking an Excel Worksheet to Access 18 Appending an Excel Worksheet to an Existing Table 22 Potential Errors When Using the Append Import Wizard 23 Summary 25 Chapter 2: Analyzing Excel Data with Access Queries 27 Introduction to Access Queries 27 Creating Your First Select Query 28 Sorting Query Results 31 Filtering Query Results 32 v xvi xvii IX

3 x Contents Querying Multiple Tables 33 Understanding the Concept of Relational Databases 34 Creating a Query that Joins Two Tables 35 Using Operators to Further Refine Your Queries 37 Exporting Query Results 40 Using Aggregate Queries 42 Aggregate Query Basics 42 About Aggregate Functions 44 Group By 45 Sum, Avg, Count, StDev, Var 46 Min, Max, First, Last 47 Expression, Where 47 Using Calculations in Your Analysis 50 Common Calculation Scenarios 50 Using Constants in Calculations 51 Using Fields in Calculations 51 Using the Results of Aggregation in Calculations 52 Using the Results of One Calculation as an Expression in Another 53 Performing Simple Date Calculations 53 Leveraging Access Query Wizards to Solve Common Excel Problems 55 The Find Duplicates Query Wizard 55 The Find UnMatched Query Wizard 58 Crosstab Queries 62 Summary 67 Chapter 3: Sprucing Up Excel Data with Access Reports 69 A Closer Look at the Access Report 69 Creating Your First Report 69 Viewing Your Report 71 Report View 72 Layout View 72 Design View 74 Page Footer 76 Report Footer 77 Creating and Modifying Grouped Reports 78 Grouping 78 Sorting and Totaling 80 Customizing Reports with Formatting 83 Page Layout Techniques 83 Solving Page Break Issues 83 Multi-Column Report Layout Example 84 Formatting Techniques 90 Formatting to Make Reports More Readable 91 Formatting to Highlight Specific Results 93

4 Contents XI Creating an Individualized Customer Letter 95 Developing the Report Data Feed 95 Initial Design of the Report 96 Adding Finishing Touches for a Professional Look 101 Summary 102 Chapter 4: Using PivotTables and PivotCharts in Access 103 Working with PivotTables in Access 103 PivotTables in Access? 104 The Anatomy of a PivotTable 105 The Totals and Detail Area 105 The Row Area 106 The Column Area 106 The Filter Area 107 Creating a Basic PivotTable 107 Creating an Advanced PivotTable with Details 111 Saving Your PivotTable 113 Sending Your Access PivotTable to Excel 114 PivotTable Options 115 Expanding and Collapsing Fields 116 Changing Field Captions 116 Sorting Data 117 Grouping Data 117 Using Date Groupings 120 Filtering for Top and Bottom Records 121 Adding a Calculated Total 122 Working with PivotCharts in Access 125 The Data Area 125 The Series Area 125 The Category Area 127 The Filter Area 127 Creating a Basic PivotChart 128 Formatting Your PivotChart 130 Summary 132 Chapter 5: Getting Access Data into Excel 135 Different Options for Importing Access Data 135 The Drag-and-Drop Method 136 Exporting the Data from Access 137 Using the Get External Data Menu 140 Using Microsoft Query 143 Introduction to Microsoft Query 143 Using the Microsoft Query Wizard 143 Starting the Query Wizard 144 Choosing and Modifying Your Data with the Query Wizard 145 Going Beyond the Wizard in Microsoft Query 156 Introduction to the Microsoft Query Interface 157 Using Microsoft Query to Import Data 159

5 Advanced Use of Microsoft Query 164 Using Joins 164 Modifying SQL to Create Custom Fields 167 A Very Brief Primer on SQL 167 Creating the Field 167 Adding User Defined Parameters in Microsoft Query 170 A Simple User-Defined Parameter 171 Advanced Example of User-Defined Parameter 172 Limitations of Microsoft Query 178 The Microsoft Query Wizard 178 Microsoft Query 178 Summary 179 Chapter 6: Leveraging Macros in Excel and Access 181 What Is a Macro? 181 A General Definition 181 Why Use a Macro? 182 Creating User Friendly Interfaces 182 Automating Repetitive Tasks 183 Formatting Cell Ranges 183 Comparing Macros in Excel and Access 183 Creating Macros in Microsoft Excel 184 Creating Macros in Microsoft Access 184 Introducing Excel Macros 184 Using the Macro Recorder 185 The Macro Recorder User Interface 185 Recording Macros with Absolute References 188 Recording Macros with Relative References 190 Macro Security in Excel Default Excel Security Settings 193 The Office Trust Center 194 Macro-Disabled Excel File Extensions 196 Excel Macro Examples 197 Macro for Navigating a Spreadsheet 197 Macro for Formatting 203 Macros in Microsoft Access 206 Macro Security in Access Creating your First Access Macro 209 The Macro Design Template 210 Common Actions in Access Macros 211 Access Macro Example 217 Summary 223

6 Part II: Advanced Integration Techniques 225 Chapter 7: VBA Fundamentals 227 What Is VBA? 228 VBA as an Object-Oriented Programming Language 229 Objects and Collections 229 Properties, Methods, and Arguments 230 Extended Analogy of the Object Model 231 The Visual Basic Editor or VBE 232 Project Explorer Window 234 Code Window 234 Code and Events 234 Variables 236 Object Variables 236 Array Variables 237 Constants 237 Declaring Variables 237 Variable Scope 238 Procedures and Functions 238 Procedures 239 Functions 242 VBA Coding Fundamentals 243 Code that Manipulates Objects 244 With...End With Construct 244 For Each-Next Construct 245 Code that Controls Execution 245 For...Next Construct 245 Do Until...Loop Construct 246 Looping Code: Do...While Loop Construct 247 Logical Code: If...Then and If...Then...Else...End If Constructs 248 Logical Code: Select Case Construct 249 Getting Help with VBA 250 Summary 252 Chapter 8: Using VBA to Move Data Between Excel and Access 255 Understanding ADO Fundamentals 256 The Connection String 256 Declaring a Recordset 258 Return Read Only Data from a Table or Query 259 Return Updateable Data from a Table or Query 260 Writing Your First ADO Procedure 260 Referencing the ADO Object Library 260 Writing the Code 262 Using the Code 264

7 xiv Contents Understanding SQL Fundamentals 265 Basic SQL Syntax to Select Data 265 The SELECT Statement 265 Selecting All Columns 266 The WHERE Clause 266 Expanding Your Search with the Like Operator 267 Grouping and Aggregating with the GROUP BY Clause 268 The HAVING Clause 268 Creating Aliases with the AS Clause 269 Setting Sort Order with the ORDER BY Clause 269 SELECT TOP and SELECT TOP PERCENT 270 Writing Your First ADO/SQL Data Extract 270 Using Criteria in Your SQL Statements 272 Set Numeric Criteria 272 Set Textual Criteria 272 Set Date Criteria 273 Set Multiple Criteria 273 Using the LIKE Operator 273 Common Scenarios Where VBA Can Help 275 Query Data from an Excel Workbook 275 Append Records to an Existing Excel Table 278 Append Excel Records to an Existing Access Table 280 Querying Text Files 282 Summary 283 Chapter 9: Exploring Excel and Access Automation 285 Understanding the Concept of Binding 285 Early Binding 286 Late Binding 286 Automating Excel from Access 287 Creating Your First Excel Automation Procedure 287 Automating Data Export to Excel 290 Sending One Recordset to Excel 290 Sending Two Datasets to Two Different Tabs in the Same Workbook 292 Automating Excel Reports: Without Programming Excel 293 Using Find and Replace to Adjust Macro-Generated Code 300 Running an Excel Macro from Access 301 Optimizing Macro-Generated Code 303 Removing Navigation Actions 303 Deleting Code That Specifies Default Settings 304 Cleaning Up Double Takes and Mistakes 305 Temporarily Disabling Screen Updating 306 Automating Access from Excel 306 Setting the Required References 307 Running an Access Query from Excel 307

8 Contents xv Running Access Parameter Queries from Excel 309 Running an Access Macro from Excel 314 Opening an Access Report from Excel 315 Opening an Access Form from Excel 315 Compacting an Access Database from Excel 316 Summary 319 Chapter 10: Integrating Excel and Access with XML 321 Why XML? 321 Understanding XML 322 The XML Declaration 322 Processing Instructions 323 Comments 323 Elements 323 The Root Element 324 Attributes 325 Namespaces 326 Creating a Simple Reporting Solution with XML 327 Exporting XML Data from Access 327 Utilizing XML Data in Excel 330 Creating a Data Entry Process Using XML 332 Creating the Data Entry Schema in Access 332 Setting Up the Data Entry Form in Excel 334 Exporting Results from Excel to XML 335 Getting the Results Back into Access 336 Summary 338 Chapter 11: Integrating Excel and Other Office Applications 339 Integrating Excel with Microsoft Word 339 Creating a Dynamic Link to an Excel Table 340 Getting Excel Data to a Word Document Using Automation 344 Creating a Word Mail Merge Document 346 Simulating the Word Mail Merge Function from Excel 351 Integrating Excel with PowerPoint 354 Creating a PowerPoint Slide with a Title 355 Copying a Range of Cells to a Presentation 357 Sending All Excel Charts to the Presentation 359 Converting a Workbook into a PowerPoint Presentation 361 Integrating Excel and Outlook 364 Mailing the Active Workbook 364 Mailing a Specific Range 366 Mailing to All Addresses in Your Contact List 367 Saving All Attachments in a Folder 369 Saving Certain Attachments to a Folder 371 Summary 373 Index 375

DESKTOP PRODUCTIVITY SOFTWARE

DESKTOP PRODUCTIVITY SOFTWARE USING WINDOWS 8 UNIT 1: INTRODUCTION TO COMPUTERS Topic A: Overview of computers Topic B: How computers work Topic C: Starting the computer UNIT 2: INPUT DEVICES Topic A: Mouse and keyboard basics Topic

More information

Microsoft Office Series

Microsoft Office Series Microsoft Office Series Microsoft Office is the office suite of desktop applications delivering the tools and services to get work done. Our Microsoft Office Quickcert offerings allow your key individuals

More information

Microsoft Office Word 2010: Level 1

Microsoft Office Word 2010: Level 1 Microsoft Office Word 2010: Level 1 Workshop Objectives: In this workshop, you will learn fundamental Word 2010 skills. You will start by getting acquainted with the Word user interface, creating a new

More information

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets

Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Microsoft

More information

Microsoft Courses. Microsoft Office 2007

Microsoft Courses. Microsoft Office 2007 Microsoft Courses Course Overview With over 90% of UK businesses using Microsoft Office, it's the world's leading software package. Our Microsoft Office course will show you how to operate the three main

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

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

Course Title: Microsoft Access 2007- Basic Duration: 12 hours

Course Title: Microsoft Access 2007- Basic Duration: 12 hours Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

BUS 007 - Business Computer Lab Course Outline Fall Term 2015 Section 001 Wednesday, 11:30-12:45, ED531

BUS 007 - Business Computer Lab Course Outline Fall Term 2015 Section 001 Wednesday, 11:30-12:45, ED531 BUS 007 - Business Computer Lab Course Outline Fall Term 2015 Section 001 Wednesday, 11:30-12:45, ED531 Thomas Tse Office: ED 534 Office Hours: Monday: 11:30 a.m. to 12:30 p.m. Wednesday: 12:00 p.m. to

More information

Computer Skills: Levels of Proficiency

Computer Skills: Levels of Proficiency Computer Skills: Levels of Proficiency September 2011 Computer Skills: Levels of Proficiency Because of the continually increasing use of computers in our daily communications and work, the knowledge of

More information

Training Needs Analysis

Training Needs Analysis Training Needs Analysis Microsoft Office 2007 Access 2007 Course Code: Name: Chapter 1: Access 2007 Orientation I understand how Access works and what it can be used for I know how to start Microsoft Access

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

St Petersburg College. Office of Professional Development. Technical Skills. Adobe

St Petersburg College. Office of Professional Development. Technical Skills. Adobe St Petersburg College Office of Professional Development Technical Skills Adobe Adobe Photoshop PhotoShop CS4: Getting Started PhotoShop CS4: Beyond the Basics Adobe Illustrator Illustrator CS4: Getting

More information

Create a PivotTable or PivotChart report

Create a PivotTable or PivotChart report Page 1 of 5 Excel Home > PivotTable reports and PivotChart reports > Basics Create or delete a PivotTable or PivotChart report Show All To analyze numerical data in depth and to answer unanticipated questions

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Computer Applications (10004)

Computer Applications (10004) Computer Applications (10004) Rationale Statement: With the growing need for computers in school and business, it is important that South Dakota high school students have an understanding of common application

More information

Sending a Document via Email Working with Graphics & Using Section Breaks, Envelopes and Labels

Sending a Document via Email Working with Graphics & Using Section Breaks, Envelopes and Labels MICROSOFT WORD BASIC FULL DAY COURSE This course is suitable for users with no (or little) previous experience of using Word. Keyboard, mouse and Windows skills are prerequisite for this course. Practice

More information

Moving Data Between Access and Excel

Moving Data Between Access and Excel Moving Data Between Access and Excel This document provides basic techniques for exchanging data between Microsoft Access and Excel. Transferring from Excel to Access To bring data into Access from Excel,

More information

Using Excel and VBA CHANDAN SENGUPTA SECOND EDITION. WILEY John Wiley & Sons, Inc.

Using Excel and VBA CHANDAN SENGUPTA SECOND EDITION. WILEY John Wiley & Sons, Inc. Using Excel and VBA SECOND EDITION CHANDAN SENGUPTA WILEY John Wiley & Sons, Inc. Contents About This Book CHAPTER 1 Introduction to Hnancial Analysis and Modeling 1 Steps in Creating a Model 5 How This

More information

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation purposes only! Advanced Excel. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2012 Advanced Excel TeachUcomp, Inc. it s all about you Copyright: Copyright 2012 by TeachUcomp, Inc. All rights reserved. This publication,

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition Beginning C# 5.0 Databases Second Edition Vidya Vrat Agarwal Contents J About the Author About the Technical Reviewer Acknowledgments Introduction xviii xix xx xxi Part I: Understanding Tools and Fundamentals

More information

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

3 What s New in Excel 2007

3 What s New in Excel 2007 3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11

Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11 Siemens Applied Automation Page 1 Maxum ODBC 3.11 Table of Contents Installing the Polyhedra ODBC driver... 2 Using ODBC with the Maxum Database... 2 Microsoft Access 2000 Example... 2 Access Example (Prior

More information

How to Excel with CUFS Part 2 Excel 2010

How to Excel with CUFS Part 2 Excel 2010 How to Excel with CUFS Part 2 Excel 2010 Course Manual Finance Training Contents 1. Working with multiple worksheets 1.1 Inserting new worksheets 3 1.2 Deleting sheets 3 1.3 Moving and copying Excel worksheets

More information

Microsoft Access Tutorials: Table of Contents

Microsoft Access Tutorials: Table of Contents Microsoft Access Tutorials: Table of Contents 1. Introduction to Microsoft Access 1.1 Introduction: What is Access? 1 1.1.1 The many faces of Access 1 1.1.2 What is in an Access database file? 3 1.2 Learning

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

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

Introduction to Microsoft Access 2007

Introduction to Microsoft Access 2007 Introduction to Microsoft Access 2007 Introduction A database is a collection of information that's related. Access allows you to manage your information in one database file. Within Access there are four

More information

Course Descriptions for Focused Learning Classes

Course Descriptions for Focused Learning Classes Course Descriptions for Focused Learning Classes Excel Word PowerPoint Access Outlook Adobe Visio Publisher FrontPage Dreamweaver EXCEL Classes Excel Pivot Tables 2 hours Understanding Pivot Tables Examining

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

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

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com

Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com M o s t U s e f u l E x c e l C o m m a n d s Tommy B. Harrington 104 Azalea Drive Greenville, NC 27858 Email: tommy@tommyharrington.com Computer Training YOU Can Understand! Most Useful Excel Commands

More information

Oregon State Bar Software Standards 2005. Software Proficiency Expectations (Items in bold are to be demonstrated)

Oregon State Bar Software Standards 2005. Software Proficiency Expectations (Items in bold are to be demonstrated) Oregon State Bar Software Standards 2005 Computer Basics (all users) Software Proficiency Expectations (Items in bold are to be demonstrated) Touch typing (at least 25 words per minute). Starting, shutting

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

Microsoft Office 2002, 2003, 2007 and 2010 Half-Day Computer Training Descriptions and Registration Information

Microsoft Office 2002, 2003, 2007 and 2010 Half-Day Computer Training Descriptions and Registration Information Microsoft Office 2002, 2003, 2007 and 2010 Half-Day Computer Training s and Registration Information Office of Human Resources Training and Organizational Development 240-777-5116 Microsoft Office 2007

More information

Course: Access 2003. 50 Cragwood Rd, Suite 35 South Plainfield, NJ 07080. Victoria Commons, 613 Hope Rd Building #5, Eatontown, NJ 07724

Course: Access 2003. 50 Cragwood Rd, Suite 35 South Plainfield, NJ 07080. Victoria Commons, 613 Hope Rd Building #5, Eatontown, NJ 07724 COURSE SYLLABUS Microsoft Office Specialist Program Course: Access 2003 50 Cragwood Rd, Suite 35 South Plainfield, NJ 07080 Victoria Commons, 613 Hope Rd Building #5, Eatontown, NJ 07724 130 Clinton Rd,

More information

BIRT: A Field Guide to Reporting

BIRT: A Field Guide to Reporting BIRT: A Field Guide to Reporting x:.-. ^ 11 Diana Peh Alethea Hannemann Nola Hague AAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Parts

More information

Analyzing Excel Data Using Pivot Tables

Analyzing Excel Data Using Pivot Tables NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts

More information

Financial Data Access with SQL, Excel & VBA

Financial Data Access with SQL, Excel & VBA Computational Finance and Risk Management Financial Data Access with SQL, Excel & VBA Guy Yollin Instructor, Applied Mathematics University of Washington Guy Yollin (Copyright 2012) Data Access with SQL,

More information

Excel: Analyze PowerSchool Data

Excel: Analyze PowerSchool Data Excel: Analyze PowerSchool Data Trainer Name Trainer/Consultant PowerSchool University 2012 Agenda Welcome & Introductions Organizing Data with PivotTables Displaying Data with Charts Creating Dashboards

More information

DESKTOP COMPUTER SKILLS

DESKTOP COMPUTER SKILLS 1 Desktop Computer Skills Price List DESKTOP COMPUTER SKILLS Microsoft Office 2010 Microsoft Office 2010: New Features Please note all prices exclude VAT Approx. Learning Hours: 3 Price: 45 Office 2010

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

MICROSOFT EXCEL 2010 ANALYZE DATA

MICROSOFT EXCEL 2010 ANALYZE DATA MICROSOFT EXCEL 2010 ANALYZE DATA Microsoft Excel 2010 Essential Analyze data Last Edited: 2012-07-09 1 Basic analyze data... 4 Use diagram to audit formulas... 4 Use Error Checking feature... 4 Use Evaluate

More information

Desktop Computing in Skillport Finding Approved Folders and Printing Certificates of Completion

Desktop Computing in Skillport Finding Approved Folders and Printing Certificates of Completion Desktop Computing in Skillport Finding Approved Folders and Printing Certificates of Completion 1. Log in to Skillport http://e-learningcenter.skillport.com/skillportfe/login.action 2. Click on the CATALOG

More information

Reduced Quality Sample

Reduced Quality Sample Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.

More information

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

Fig. 1 Suitable data for a Crosstab Query.

Fig. 1 Suitable data for a Crosstab Query. Crosstab Queries A Crosstab Query is a special kind of query that summarizes data by plotting one field against one or more other fields. Crosstab Queries can handle large amounts of data with ease and

More information

Microsoft Office Topics per Course

Microsoft Office Topics per Course Microsoft Office Topics per Course This document contains: List of courses Details of what is covered in each course Registration links Please review prerequisites and topics before registering. MS Office

More information

Analyzing Data Using Access

Analyzing Data Using Access Analyzing Data Using Access What you will do: Use Web Templates Import data from text files Ask questions of your data using queries Understand crosstab queries Create a report Use web forms Databases

More information

Advanced Excel 10/20/2011 1

Advanced Excel 10/20/2011 1 Advanced Excel Data Validation Excel has a feature called Data Validation, which will allow you to control what kind of information is typed into cells. 1. Select the cell(s) you wish to control. 2. Click

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment. MICROSOFT DYNAMICS NAV COURSE OUTLINE 1) MICROSOFT DYNAMICS NAV Module 1: Microsoft Dynamics NAV Development Environment This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

More information

TheEducationEdge. Export Guide

TheEducationEdge. Export Guide TheEducationEdge Export Guide 102111 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, including photocopying,

More information

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions

Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups. Outlook Functions Clean Up Email Rules Quick Steps Search Tools Change Views Export Data Convert email to tasks Contact Groups Outlook Functions Clean Up: New ways to manage conversations and remove redundant emails: Email

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

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

Advanced Excel Charts : Tables : Pivots : Macros

Advanced Excel Charts : Tables : Pivots : Macros Advanced Excel Charts : Tables : Pivots : Macros Charts In Excel, charts are a great way to visualize your data. However, it is always good to remember some charts are not meant to display particular types

More information

Importing TSM Data into Microsoft Excel using Microsoft Query

Importing TSM Data into Microsoft Excel using Microsoft Query Importing TSM Data into Microsoft Excel using Microsoft Query An alternate way to report on TSM information is to use Microsoft Excel s import facilities using Microsoft Query to selectively import the

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

Microsoft Access 2010- Introduction

Microsoft Access 2010- Introduction Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Visual Basic. murach's TRAINING & REFERENCE

Visual Basic. murach's TRAINING & REFERENCE TRAINING & REFERENCE murach's Visual Basic 2008 Anne Boehm lbm Mike Murach & Associates, Inc. H 1-800-221-5528 (559) 440-9071 Fax: (559) 440-0963 murachbooks@murach.com www.murach.com Contents Introduction

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

Microsoft Office Specialist Certification Training Program

Microsoft Office Specialist Certification Training Program Microsoft Office Specialist Certification Training Program Why get certified? Get a recognised badge of proficiency Really learn how to get the most from your PC Earning a Microsoft Office Specialist certification

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

Detail Report Excel Guide for High Schools

Detail Report Excel Guide for High Schools StudentTracker SM Detail Report NATIONAL STUDENT CLEARINGHOUSE RESEARCH CENTER 2300 Dulles Station Blvd., Suite 300, Herndon, VA 20171 Contents How the National Student Clearinghouse populates its database...

More information

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

Microsoft Business Contact Manager 2010 - Complete

Microsoft Business Contact Manager 2010 - Complete Microsoft Business Contact Manager 2010 - Complete Introduction Prerequisites Section 1: Getting Started with Business Contact Manager Lesson 1.1: Setting up Business Contact Manager What is Business Contact

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

Analyzing Data Using Excel

Analyzing Data Using Excel Analyzing Data Using Excel What you will do: Create a spreadsheet Use formulas and basic formatting Import text files Save worksheets as web pages Add interactivity to web worksheets Use pivot tables Create

More information

SENDING E-MAILS WITH MAIL MERGE

SENDING E-MAILS WITH MAIL MERGE SENDING E-MAILS WITH MAIL MERGE You can use Mail Merge for Word and Outlook to create a brochure or newsletter and send it by e- mail to your Outlook contact list or to another address list, created in

More information

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke

By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke SPREADSHEETS FOR MARKETING & SALES TRACKING - DATA ANALYSIS TOOLS USING MS EXCEL By: Peter K. Mulwa MSc (UoN), PGDE (KU), BSc (KU) Email: Peter.kyalo@uonbi.ac.ke Objectives By the end of the session, participants

More information

FileMaker Pro and Microsoft Office Integration

FileMaker Pro and Microsoft Office Integration FileMaker Pro and Microsoft Office Integration page Table of Contents Executive Summary...3 Introduction...3 Top Reasons to Read This Guide...3 Before You Get Started...4 Downloading the FileMaker Trial

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

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL

SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL SQL SERVER SELF-SERVICE BI WITH MICROSOFT EXCEL JULY 2, 2015 SLIDE 1 Data Sources OVERVIEW OF AN ENTERPRISE BI SOLUTION Reporting and Analysis Data Cleansi ng Data Models JULY 2, 2015 SLIDE 2 Master Data

More information

Kaseya 2. Quick Start Guide. for VSA 6.3

Kaseya 2. Quick Start Guide. for VSA 6.3 Kaseya 2 Custom Reports Quick Start Guide for VSA 6.3 December 9, 2013 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULA as

More information

BIA and BO integration other performance management options Crystal Reports Basic: Fundamentals of Report Design

BIA and BO integration other performance management options Crystal Reports Basic: Fundamentals of Report Design SAP BO Training Content Overview System Set up and Administration SAP BO Integration Kit Installation & Configuration SAP BO integrated solution approach Server administration SAP Authorization administration

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Lesson 9. Reports. 1. Create a Visual Report. Create a visual report. Customize a visual report. Create a visual report template.

Lesson 9. Reports. 1. Create a Visual Report. Create a visual report. Customize a visual report. Create a visual report template. Lesson 9. s Create a visual report. Customize a visual report. Create a visual report template. Introduction You have updated the cost information in your project plan. When presenting such varied information

More information

Overview of sharing and collaborating on Excel data

Overview of sharing and collaborating on Excel data Overview of sharing and collaborating on Excel data There are many ways to share, analyze, and communicate business information and data in Microsoft Excel. The way that you choose to share data depends

More information

Using Excel s PivotTable to Analyze Learning Assessment Data

Using Excel s PivotTable to Analyze Learning Assessment Data Using Excel s PivotTable to Analyze Learning Assessment Data Assessment Office University of Hawaiʻiat Mānoa Feb 13, 2013 1 Mission: Improve student learning through program assessment 2 1 Learning Outcomes

More information

Microsoft Office Access 2010: Intermediate. Course Overview Course Introduction. Course Length: 1 Day. Course Overview

Microsoft Office Access 2010: Intermediate. Course Overview Course Introduction. Course Length: 1 Day. Course Overview Microsoft Office Access 2010: Intermediate Course Length: 1 Day Course Overview This ILT Series course builds on the skills and concepts taught in Access 2010: Basic. Students will learn how to normalize

More information

Eskills360 0 - Desktop Courses

Eskills360 0 - Desktop Courses Eskills360 Desktop DESKTOP COMPUTER SKILLS Adobe Adobe Flash CS5 Introduction to Adobe Flash Professional CS5 Drawing and Working with Images in Flash CS5 Using Flash CS5 Libraries, Text, and Components

More information

A Basic introduction to Microsoft Access

A Basic introduction to Microsoft Access A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout

Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout Microsoft Suite 2007 offers a new user interface. The top portion of the window has a new structure

More information

Office and SharePoint

Office and SharePoint Office and SharePoint 2010 User's Guide Integrating SharePoint with Excel, Outlook, Access and Word Michael P. Antonovich Apress About the Author About the Technical Reviewer Acknowledgments xvi xvii xviii

More information

Using the Ribbon in Microsoft Office 2013 SPSCC Student Computing Center By: Bobby Coleman

Using the Ribbon in Microsoft Office 2013 SPSCC Student Computing Center By: Bobby Coleman Using the Ribbon in Microsoft Office 2013 SPSCC Student Computing Center By: Bobby Coleman Microsoft Office 2013 utilizes the Ribbon, the Ribbon is designed to help a user find commands for certain tasks

More information

Technical White Paper. Automating the Generation and Secure Distribution of Excel Reports

Technical White Paper. Automating the Generation and Secure Distribution of Excel Reports Technical White Paper Automating the Generation and Secure Distribution of Excel Reports Table of Contents Introduction...3 Creating Spreadsheet Reports: A Cumbersome and Manual Process...3 Distributing

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

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE

SAP BUSINESS OBJECT ANALYSIS FOR EXCEL DEVELOPER GUIDE STEP 1: Log on to Business Object Analysis for Excel. Path: Start All Programs SAP Business Intelligence Analysis for Microsoft Excel Click Microsoft Excel will appear Figure 1 STEP 2: Choose Microsoft

More information