M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

Size: px
Start display at page:

Download "M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A"

Transcription

1 M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org SUMMARY Now take your access database and turn it into an information machine! Learn how to take hundreds of thousands of pieces of information from multiple tables and extract, organize, summarize, and analyze only the information you want. Then learn how to put that information on a visually appealing report. Prerequisites: all topics covered in Part 1, including: 1. What an Access database is and how it is different from Excel. 2. The purpose of and creation process for basic tables, queries, forms, and reports. 3. Basic knowledge of different data types. 4. How to create dropdown and check boxes in your tables. 5. How to switch between object views (e.g., for forms: design view, form view, and layout view).

2 TABLE OF CONTENTS Summary... 1 How to Use This Handout... 3 Click Paths... 3 Keyboard Directions... 3 Importing Tables into Access... 4 Queries... 5 SELECT QUERIES select/create a sub-set of records and fields that meet a given criteria... 5 ACTION QUERIES alter or manipulate the data in your tables(s)... 6 Database Planning... 8 Criteria Syntax... 9 Exercises... 10

3 HOW TO USE THIS HANDOUT This handout serves as a point of reference for your workshop. However, you may also use the handout after the class is over to help you remember how to perform some of the tasks covered during the workshop. CLICK PATHS Throughout this handout, you will be given directions to perform a series of mouse clicks also called a click path. For instance, to save a change to an Access object, you should click on the File tab in the ribbon, then click on Save. In this handout, that click path is displayed using a bold font for the words to click on connected by a single right-pointing arrow ( ): File Save In some cases, you must find the correct section of the ribbon before clicking on an icon or button. In these cases, the ribbon section will be highlighted in gray, for example: External Data Import & Link Excel In this example, Import & Link is a ribbon section. KEYBOARD DIRECTIONS You also will be given directions to press certain keys on your keyboard. There are two kinds of key press sequences: (1) simultaneous and (2) sequential. 1) Simultaneous key presses refers to keys you have to hold down together to perform a task. Simultaneous key presses are displayed using the plus sign (+) between the keys to be pressed typed in caps. For example, the find box is opened by pressing CTRL + F. CTRL stands for the control key. ALT stands for the alternate key. WIN stands for the windows key (only applies to PCs with windows keys). 2) Sequential key presses refers to keys you have to press in sequence (one after the other it is not necessary to hold them down). Sequential key presses are displayed using a pipe character ( ) between the keys to be pressed typed in caps. For example, one way to save your file under a new file name is to type ALT, then F, then A. This would be displayed as: ALT F A. If you like keyboard shortcuts, Microsoft Office has provided a very robust listing of them at: I provide a lot in this workshop, but their list exhaustive.

4 IMPORTING TABLES INTO ACCESS Importing data into Access was also covered step-by-step in Access Part 1; therefore, general instructions are given here. You can import many different types of files into Access. Note that copying and pasting doesn t work as expected in Access. You must use Access s import functionality to bring external data tables into your database. You can import from an Excel spreadsheet, from other Access databases, from text files, from Outlook, or other types of databases (e.g., SQL, Oracle, etc.). 1. External Data Import & Link 2. Choose file type: a. Access, Excel, SharePoint, Text, XML, and much, much more 3. For Excel Importing: a. Locate data source (using Browse) b. Choose to import table (or to link 1 table) c. Next > d. Indicate whether the first row contains column headings or not e. Next > f. Place cursor in first column, edit properties i. Name ii. Data Type (Access will attempt to interpret the data automatically, but you may have to change these data types see data types in the Access Part I handout) iii. Indexed (speeds up searching if you typically use a particular field for searching) 1. No: not indexed 2. Yes (Duplicates Ok): Indexes the field, allows duplicates in the field 3. Yes (No Duplicates): Indexes the field, does not allow duplicates *like a Primary Key* g. Next > h. Choose whether to add primary key, select primary, or have no primary key i. Next > j. Type a name for the table (should be self-explanatory) k. Finish l. You should receive a message telling you whether or not the import process was successful. m. Choose whether or not you would like to save the import steps for a later time (recommended if you ll be doing the import more than once). You can even create an Outlook event that will remind you to perform the import. { We will import data for this class together. Some points during the import: 1) Ratings sheet of RYRData_for class.xlsx a. Data Types i. RatingID Double 1 A linked table maintains a link (or connection) to the original file, but does not actually hold any of the data in your database. When you change the contents of the Excel spreadsheet, the linked table in your database will also change automatically.

5 ii. RiderID Text iii. TimeSent Date/Time iv. Rating Integer v. BusRoute Integer vi. Complete Yes/No b. Primary Key RatingID c. Change Complete Lookup display to check box 2) Riders sheet of RYRData_for class.xlsx a. Data Types i. RiderID Text ii. DOB Date/Time iii. Subscribed Yes/No iv. FirstRating Date/Time b. Primary Key RiderID c. Change Subscribed Lookup display to check box 3) Bus Lines.xlsx a. Data Types i. Number Integer b. Primary Key Number } QUERIES SELECT QUERIES SELECT/CREATE A SUB-SET OF RECORDS AND FIELDS THAT MEET A GIVEN CRITERIA 1. Basic Select Query: covered in Access Part I 2. Parameter Query: create placeholder criteria that will ask the user for input every time the query is run. For example, create a query that retrieves all records with last names that begin with [criteria]. a. Create menu b. Query Design c. Select the appropriate table(s) and/or query(ies) from which you wish to retrieve data, click add d. When finished adding table(s) and/or query(ies), click Close e. Move the fields you wish to select to the design grid in the desired order f. In the criteria row under the desired field in the design grid, type the following (replace message here with your user prompt, e.g., [Type First Letter of Last Name:] [Message Here] g. Edit the query as desired h. Save the query i. Run the query j. Notes: i. You can specify MANY parameters for your queries, the more parameters you specify, the more prompts will be generated.

6 ii. If the user does not type a value in the prompt box, Access will look for null values in the table to match against. If you wish to allow your user to bypass your criteria to select ALL records, then type the following: Like * & [Message Here] & * iii. Parameter queries can be used with other operators (Like, Between And, etc.) 3. Totals Queries: allows the user to summarize the data by grouping records together on one or more fields and then aggregating one or more fields. a. Create a select query to retrieve the information that fits your criteria. b. On the Query Tools Design Ribbon, look for the Totals button c. Click it d. This will add an extra row to the design grid that says, Total e. The default value for each field in the total row is Group By (this means that you will be grouping records with similar values in that particular field) f. Change the value of the Total row for each field until it meets your needs: i. Group By: group records together that have similar values in this field ii. Sum: add together the values in this field for any records that have been grouped iii. Avg: Find the average of the grouped records iv. Min: Find the minimum value in the grouped records v. Max: Fine the maximum value in the grouped records vi. Count: count the number of records in the group vii. StDev/Var: Standard deviation or variance viii. First/Last: Find the first or last record in the group, depending on how the query is sorted. ix. Expression: you have provided a typed mathematical expression in the field box x. Where: use this field as a criterion; do not involve it in the grouping or totals. g. Save the query h. Run the query i. Notes: i. The query will always retrieve the live data, so, any time the data changes, the query results will change ii. Blank values will not count in the aggregate functions or expressions that you have provided 4. Top Values Query: This query reduces the total number of rows that are returned in your query results to reflect an absolute number of records or a percentage of records taken from the top of the result set. a. In query Design View b. Design Query Setup Return c. Pick your desired number of records to return or type in your own d. SORT your query results so that the records you want are at the TOP of your query ACTION QUERIES ALTER OR MANIPULATE THE DATA IN YOUR TABLES(S) 1. Make Table: takes the records and fields you ve specified from one table or query and creates a new table (or overwrites and existing table) with the selected data a. Create a Select Query that meets your criteria b. In the Ribbon, select Make Table

7 c. Provide the name of the table d. Save the query e. Run the query 2. Append: take the records and fields you ve specified from one table or query and adds them to an existing table. a. Create a Select Query that meets your criteria b. In the Ribbon, select Append c. Select the table to which you want to append your data (you can specify to which field in the destination table you want each field in the source table to append to; however, if your field names match exactly, Access will provide the information for you) d. Make sure the Append To: row in the design grid contains the correct field names for the destination table. e. Save the query f. Run the query 3. Delete: deletes records from the chosen table that match the given criteria a. Create a Select Query that will select the records you want to delete i. (You only need to design your query to select the particular field(s) upon which you will place your deletion criteria. b. In the Ribbon, select Delete c. Save the query d. Run the query 4. Update: updates field values for records that meet your criteria a. Create a Select Query to select the records you wish to update based on a field(s) (if applicable) b. In the Ribbon, select Update c. Save the query d. In the Update To: row in the design grid, type in the value or formula that to create the new values for that specific field. e. Run the query

8 DATABASE PLANNING Gopher Wood, Ltd. Objective: We want to create a database in order to keep track of our customers, products, and orders. Basically, we want to be able to know what customers have bought what products when, and we want to be able to contact our customers, look up products, and view individual orders. Tables, Fields, and Relationships: Customers CustID (primary key) FirstName LastName BusPhone Address City State ZipCode Discount Active Orders OrderID (primary key) Date CustID Total Shipped PayMethod PayMethods Code (primary key) Description Active Surcharge Products ProdID (primary key) Description Cost RetailPrice QtyOnHand BinID Taxable Transactions TransID (primary key) OrderID ProdID Qty Price Tax Total Discounts Discount ProdStorage BinID (primary key) Shelf Isle Capacity

9 CRITERIA SYNTAX For all data types, if you want to find all records with a SPECIFIC (EXACT) VALUE, simply type that value into the criteria box 15 find all records with a value of 15 Wilson find all records with a value of Wilson (Access will change this statement to Wilson because it knows it is text) 2/3/2008 find all records that have a date of 2/3/2008 (Access will change this statement to #2/3/2008# because it knows you re talking about a date) Yes find all records that have a value of Yes (for Yes/No data types, Access will leave Yes as it is; for text data, Access will change this to Yes, because it is a string of text) For all data types, if you want to find records that match a DISCRETE SET OF VALUES, you can use the In operator In(10,12,14,16) find all records with a value of 10, 12, 14, or 16 In( PA, MD, NJ, VA ) find all records with a value of PA, MD, NJ, or VA (Notice the quotes surrounding the options; these must be added for Access to treat the options like text.) For any numerical data (including dates, the following syntax can be used) where you want a RANGE OF VALUES: <15 find all records with a value less than 15 >15 find all records with a value greater than 15 <>15 find all records with a value that is not 15 (can also use Not 15) Between 15 And 20 find all records with a value between 15 and 20, inclusive Between 1/1/2008 And 1/31/2008 find all records with a date in January 2008 To EXCLUDE A VALUE, SET OF VALUES, OR RANGE OF VALUES, use the Not operator Not 15 find all records that are not equal to 15 (equivalent to <>15) Not Wilson find all records that are not Wilson (Access will change to Not Wilson ) Not Between 1/1/2008 And 1/31/2008 find all records that are not in January of 2008 Not In( PA, MD, NJ, VA ) find all records that are not equal to PA, MD, NJ, or VA To create a WILDCARD (OR FUZZY) SEARCH, use the Like operator and the wildcards (* or?) Like W* find all records that begin with W and are followed by anything Like *W find all records that end with W and begin with anything Like *W* find all records that contain a W Like W?? find all records that start with a W that is followed by 2 characters

10 EXERCISES 1) Create a Make-Table Query a. Create a make-table query that selects all the fields for every record in the Ratings table that was incomplete. b. Name your destination table according to its purpose so you will remember what data is contained in that table. c. Make sure you specify the relationships after you make this new table. 2) Create a Delete Query a. Create a delete query that deletes any records from the Ratings table that were incomplete. 3) Create an Update Query a. Add a field to the Ratings table that will hold the hour of the rating. i. Create an update query that calculates the hour using the Hour() function. b. Add a field to the Ratings table that will hold the day of the week of the rating. i. Create an update query that calculates the day of the week of the rating using the Weekday() function. 4) Create a Parameter Query a. Create a parameter query that extracts all the Ratings that occurred during a date range. b. The query should include all fields from the Ratings table and prompt the user for the date range (e.g., Between [start date] And [end date]). The resulting records should be sorted in chronological order. 5) Create a Totals Query Calculate the average Satisfaction Rating per bus route for only those routes that Quick Bus types. 6) Create a Totals Query Part II Calculate the average Satisfaction Rating and count of ratings per bus route for all Local Bus routes between any two dates (the query should prompt the user for the starting and ending dates). 7) Create a Total Query Part III a. Calculate the average Satisfaction Rating and count of ratings per hour of day (e.g., 1 PM, 2 PM, 3 PM, etc.) but only for Weekdays (no Saturdays or Sundays) and for MARC ratings. 8) Create a Top Values Query a. Find out who has been providing the most ratings to RateYourRide. Create a top values query that presents the top 5 Riders names, dates of birth, total complete ratings.

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A M I C R O S O F T A C C E S S 2 0 1 3 : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org www.jwalkonline.org/main @MichaelJWalk

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Microsoft Access XP (2002) Queries

Microsoft Access XP (2002) Queries Microsoft Access XP (2002) Queries Column Display & Sorting Simple Queries And & Or Conditions Ranges Wild Cards Blanks Calculations Multi-table Queries Table of Contents INTRODUCTION TO ACCESS QUERIES...

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

More information

Microsoft Access XP Queries. Student Manual

Microsoft Access XP Queries. Student Manual Microsoft Access XP Queries Student Manual Duplication is prohibited without the written consent of The Abreon Group. Foster Plaza 10 680 Andersen Drive Suite 500 Pittsburgh, PA 15220 412.539.1800 800.338.5185

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database :

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database : Highline College - Busn 216: Computer Applications for Business (Fun and Power with Computers) Office 2016 Video #39: Access 2016: Create Database, Import Excel, Create Tables & Forms, Build Relationships

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

Microsoft Office 2016 Mail Merge

Microsoft Office 2016 Mail Merge Microsoft Office 2016 Mail Merge Mail Merge Components In order to understand how mail merge works you need to examine the elements involved in the process. In any mail merge, you'll deal with three different

More information

Microsoft Access XP (2002) - Advanced Queries

Microsoft Access XP (2002) - Advanced Queries Microsoft Access XP (2002) - Advanced Queries Group/Summary Operations Change Join Properties Not Equal Query Parameter Queries Working with Text IIF Queries Expression Builder Backing up Tables Action

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel in Excel Although calculations are one of the main uses for spreadsheets, Excel can do most of the hard work for you by using a formula. When you enter a formula in to a spreadsheet

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

Introduction to Microsoft Access 2016

Introduction to Microsoft Access 2016 Introduction to Microsoft Access 2016 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

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems

Advanced Excel. IMFOA Conference. April 11, :15 pm 4:15 pm. Presented By: Chad Jarvi, CPA President, Civic Systems Advanced Excel Presented By: Chad Jarvi, CPA President, Civic Systems IMFOA Conference April 11, 2019 3:15 pm 4:15 pm COPY AND PASTE... 4 USING THE RIBBON... 4 USING RIGHT CLICK... 4 USING CTRL-C AND CTRL-V...

More information

Microsoft Power Tools for Data Analysis #5 Power Query: Append All Tables in Current Workbook Notes from Video:

Microsoft Power Tools for Data Analysis #5 Power Query: Append All Tables in Current Workbook Notes from Video: Microsoft Power Tools for Data Analysis #5 Power Query: Append All Tables in Current Workbook Notes from Video: Table of Contents: 1. Goal of Video... 3 2. Each Excel Table on New Sheet... 3 3. What does

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4)

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Section 3 AGENDA

More information

FRP300 Instructor Notes. Table of Contents

FRP300 Instructor Notes. Table of Contents FRP300 Instructor Notes Table of Contents Updated April 24, 2016 1) AutoSum... 1 2) Fill Handle... 2 3) Relative versus Absolute Referencing... 2 4) COUNTIF and SUMIF... 4 5) CONCATENATE... 6 6) Text to

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1 What is a Query? Queries allow the user to manipulate the

More information

Row 1 is called the header row which contains all the field names. Records start in row 2.

Row 1 is called the header row which contains all the field names. Records start in row 2. Excel: Lists Familiarity with basic Excel is required for this class. Learn to create field names, sort lists, and link worksheets. You'll learn lists that can also be used in our Word: Mail Merge class.

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Select Queries Norm Downey Chapter 2 pages 173 193 and Chapter 3 pages 218 249 2 1 This PowerPoint uses the Sample Databases on the class website Please download them now

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Excel. Dashboard Creation. Microsoft # KIRSCHNER ROAD KELOWNA, BC V1Y4N TOLL FREE:

Excel. Dashboard Creation. Microsoft # KIRSCHNER ROAD KELOWNA, BC V1Y4N TOLL FREE: Microsoft Excel Dashboard Creation #280 1855 KIRSCHNER ROAD KELOWNA, BC V1Y4N7 250-861-8324 TOLL FREE: 1-877-954-8433 INFO@POWERCONCEPTS.CA WWW.POWERCONECPTS.CA Dashboard Creation Contents Process Overview...

More information

Using Mail Merge in Microsoft Word 2003

Using Mail Merge in Microsoft Word 2003 Using Mail Merge in Microsoft Word 2003 Mail Merge Created: 12 April 2005 Note: You should be competent in Microsoft Word before you attempt this Tutorial. Open Microsoft Word 2003 Beginning the Merge

More information

Using Mail Merge in Microsoft Word XP/2002

Using Mail Merge in Microsoft Word XP/2002 Using Mail Merge in Microsoft Word XP/2002 Open Microsoft Word XP/2002 Beginning the Merge You may start Mail Merge with a blank document or one that you have already created. We will use a blank document

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

More information

PowerPoint Presentation to Accompany GO! All In One. Chapter 13

PowerPoint Presentation to Accompany GO! All In One. Chapter 13 PowerPoint Presentation to Accompany GO! Chapter 13 Create, Query, and Sort an Access Database; Create Forms and Reports 2013 Pearson Education, Inc. Publishing as Prentice Hall 1 Objectives Identify Good

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example This exercise is a follow-up to the MPA admissions example used in the Excel Workshop. This document contains detailed solutions

More information

Lesson 1: Creating and formatting an Answers analysis

Lesson 1: Creating and formatting an Answers analysis Lesson 1: Creating and formatting an Answers analysis Answers is the ad-hoc query environment in the OBIEE suite. It is in Answers that you create and format analyses to help analyze business results.

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Manually adjust column width Place the pointer on the line between letters in the Column Headers. The pointer will change to double headed arrow. Hold

More information

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013/2016 David W. Gerbing School of Business Administration Portland State University July 7, 2018 CONTENTS 1 Contents 1 Create a New Database 1 2 Customer

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

QUERY USER MANUAL Chapter 7

QUERY USER MANUAL Chapter 7 QUERY USER MANUAL Chapter 7 The Spectrum System PeopleSoft Financials Version 7.5 1. INTRODUCTION... 3 1.1. QUERY TOOL... 3 2. OPENING THE QUERY TOOL... 4 3. THE QUERY TOOL PANEL... 5 3.1. COMPONENT VIEW

More information

Microsoft Power Tools for Data Analysis #04: Power Query: Import Multiple Excel Files & Combine (Append) into Proper Data Set.

Microsoft Power Tools for Data Analysis #04: Power Query: Import Multiple Excel Files & Combine (Append) into Proper Data Set. Microsoft Power Tools for Data Analysis #04: Power Query: Import Multiple Excel Files & Combine (Append) into Proper Data Set Table of Contents: Notes from Video:. Goal of Video.... Main Difficulty When

More information

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.)

Log into your portal and then select the Banner 9 badge. Application Navigator: How to access Banner forms (now called pages.) Navigation Banner 9 Log into your portal and then select the Banner 9 badge. This will bring you to the Application Navigator. Application Navigator: How to access Banner forms (now called pages.) Menu

More information

Excel 2016: Part 2 Functions/Formulas/Charts

Excel 2016: Part 2 Functions/Formulas/Charts Excel 2016: Part 2 Functions/Formulas/Charts Updated: March 2018 Copy cost: $1.30 Getting Started This class requires a basic understanding of Microsoft Excel skills. Please take our introductory class,

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007 Many people know that you can use the Mail Merge feature in Microsoft Word 2007 to easily create mailing labels, but did you know you can use it to quickly create custom name badge inserts? Here, you will

More information

Advanced Excel Macros : Data Validation/Analysis : OneDrive

Advanced Excel Macros : Data Validation/Analysis : OneDrive Advanced Excel Macros : Data Validation/Analysis : OneDrive Macros Macros in Excel are in short, a recording of keystrokes. Beyond simple recording, you can use macros to automate tasks that you will use

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

EXCEL 2010 TIPS & TRICKS

EXCEL 2010 TIPS & TRICKS EXCEL 2010 TIPS & TRICKS Training and Reference Guide Starlight Education Table of Contents Move to the End of a Row or Column of Data... 1 Select Cells Without Scrolling... 1 Select Non-Adjacent Ranges...

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 These documents are based on and developed from information published in the LTS Online Help Collection (www.uwec.edu/help) developed by the University of Wisconsin Eau Claire

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer

Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Connecting SQL Data Sources to Excel Using Windward Studios Report Designer Welcome to Windward Studios Report Designer Windward Studios takes a unique approach to reporting. Our Report Designer sits directly

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Sage MAS Intelligence 90/200 Table of Contents Getting Started Guide... 1 Login Properties... 1 Standard Reports Available... 2 Financial Report... 2 Financial Trend Analysis... 3

More information

SharePoint Designer Advanced

SharePoint Designer Advanced SharePoint Designer Advanced SharePoint Designer Advanced (1:00) Thank you for having me here today. As mentioned, my name is Susan Hernandez, and I work at Applied Knowledge Group (http://www.akgroup.com).

More information

8.1 OVERVIEW OF THE INVENTORY MODULE ADDING NEW ITEMS...

8.1 OVERVIEW OF THE INVENTORY MODULE ADDING NEW ITEMS... Chapter Module The module is used to record and track inventory and storeroom information. This Chapter describes how to use the Web Work module. Table of Contents 8.1 OVERVIEW OF THE INVENTORY MODULE...

More information

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query Contents PeopleSoft Query Overview... 1 Process Detail... 2 I. Running the Query... 2 II. Query Actions... 5 III. Planning a New Query... 5 IV. How to Find Out Which Record(s) to Use... 5 V. Building a

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

More information

Graded Project. Microsoft Excel

Graded Project. Microsoft Excel Graded Project Microsoft Excel INTRODUCTION 1 PROJECT SCENARIO 1 CREATING THE WORKSHEET 2 GRAPHING YOUR RESULTS 4 INSPECTING YOUR COMPLETED FILE 6 PREPARING YOUR FILE FOR SUBMISSION 6 Contents iii Microsoft

More information

Microsoft Word 2010 Introduction to Mail Merge

Microsoft Word 2010 Introduction to Mail Merge Microsoft Word 2010 Introduction to Mail Merge Elizabeth Wells February 2012 Copyright 2012 ElizabethWells All rights reserved. Except as permitted under current legislation, no part of this work may be

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

More information

MS Access Let s begin by looking at the toolbar and menu of Access.

MS Access Let s begin by looking at the toolbar and menu of Access. MS Access 2003 Access is a database program that allows you to store, retrieve, analyze, and print information. Individuals use databases for various purposes. Businesses use databases to manage customer

More information

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

Microsoft Excel 2016 LEVEL 3

Microsoft Excel 2016 LEVEL 3 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Excel 2016 LEVEL 3 kcls.org/techtutor Microsoft Excel 2016 Level 3 Manual Rev 11/2017 instruction@kcls.org Microsoft Excel 2016 Level 3 Welcome

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS:

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS: CONTENTS: Summary... 2 Microsoft Excel... 2 Creating a New Spreadsheet With ODBC Data... 2 Editing a Query in Microsoft Excel... 9 Quattro Pro... 12 Creating a New Spreadsheet with ODBC Data... 13 Editing

More information

Excel Module 7: Managing Data Using Tables

Excel Module 7: Managing Data Using Tables True / False 1. You should not have any blank columns or rows in your table. True LEARNING OBJECTIVES: ENHE.REDI.16.131 - Plan the data organization for a table 2. Field names should be similar to cell

More information

1. MS EXCEL. a. Charts/Graphs

1. MS EXCEL. a. Charts/Graphs 1. MS EXCEL 3 tips to make your week easier! (MS Excel) In this guide we will be focusing on some of the unknown and well known features of Microsoft Excel. There are very few people, if any at all, on

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Excel Conditional Formatting (Mac)

Excel Conditional Formatting (Mac) [Type here] Excel Conditional Formatting (Mac) Using colour to make data analysis easier Excel conditional formatting automatically formats cells in your worksheet if specified criteria are met, giving

More information

PeopleSoft (version 9.1): Introduction to the Query Tool

PeopleSoft (version 9.1): Introduction to the Query Tool PeopleSoft (version 9.1): Introduction to the Query Tool Introduction This training material introduces you to some of the basic functions of the PeopleSoft (PS) Query tool as they are used at the University

More information

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step.

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step. 1. AUTO CORRECT - To auto correct a text in MS Word the text manipulation includes following step. - STEP 1: Click on office button STEP 2:- Select the word option button in the list. STEP 3:- In the word

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

M I C R O S O F T E X C E L P A R T 2 : W O R K I N G WITH NUMBERS

M I C R O S O F T E X C E L P A R T 2 : W O R K I N G WITH NUMBERS ACHIEVEMENT & LEARNING CENTER UNIVERSITY OF BALTIMORE M I C R O S O F T E X C E L 2 0 1 3 P A R T 2 : W O R K I N G WITH NUMBERS BY: MI C HAEL J. WA LK, M. S. www.jwalkonline.org/main @MichaelJWalk michael@jwalkonline.org

More information

WAAT-PivotTables Accounting Seminar

WAAT-PivotTables Accounting Seminar WAAT-PivotTables-08-26-2016-Accounting Seminar Table of Contents What does a PivotTable do?... 2 How to create PivotTable:... 2 Add conditions to the PivotTable:... 2 Grouping Daily Dates into Years, Quarters,

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information