Microsoft Access Lesson 2: Retrieving Information from a Database

Size: px
Start display at page:

Download "Microsoft Access Lesson 2: Retrieving Information from a Database"

Transcription

1 Microsoft Access Lesson 2: Retrieving Information from a Database In this lesson you will learn how to construct queries to retrieve information from a database. It uses the example database (ExampleDB.mdb) you saved on your H drive. Navigation Buttons Open the tblemployees table in the Datasheet view. At the bottom of the page, you will see a set of Navigation buttons. These buttons are useful for moving around in a large database. Try them. You can enter a number in the Record Box to move to a particular record. Finding a Record in a Table Entering the number in the Record Box will move you quickly to a record in a table. On the other hand, it probably is more likely that you will know something else about the records a name, an address, etc. rather than the record s number. In this case, you need to find the record. Suppose that Annie Bullock has changed her name, address, and phone number following her marriage. Her new personal information is shown below: Annie Rassmussen, 423 Poplar Avenue, Roebuck, SC (864) Select the Last Name column and click on the Find icon. In the window that pops up, enter Bullock in the Find What: text box. Select tblemployees in the Look In list. Click on Find Next. When you find the record, edit it to reflect the new personal information. 1

2 Filtering by Selection Another way to search for data in a large database is to apply filters that restrict the information that is visible in the table. This does not remove information from the table in the database, but merely hides information that is irrelevant to a search. One way to filter data is to select the criterion from the table that you want to use as the restriction. Suppose, for example that you want to view the records of all employees living in North Carolina. Click on one of the NC cells in the State field and then click on the Filter by Selection icon. You should see only the NC employees displayed. Click on the Filter icon to remove the filter. Practice: List only the employees who work in the department with ID 106. Practice: List only the employees who live in Spartanburg and who work in the department with ID

3 Filtering by Form You also can do more complex filtering than by selection. Suppose, for examplee that you would like to see only those employees who have been hired after 1/1/2000. Click on the Filter by Form icon. You will see a blank form showing each of the fields. Enter >1/1/2000 in the Hire Date field. Then click on the Filter icon. The table of filtered data now will be displayed. In this case only employees with hired dates after January 1, 2000 will be shown. The fact that the data is filtered is indicated by (Filtered) in the window status bar. Click on the Filter icon again to remove the filter. 3

4 A wide variety of filtering expressions is available. Consult Access Help s Filtering Data topic for more details and examples. Practice: Use Filter by Form to list only the employees living in Spartanburg who weree hired before January 1, Practice: Use Filter by Form to list all the employees whose last name starts with W. Practice: Use Filter by Form to list the all employees who live on Tio Lane. Practice: Use Filter by Form to list all employees who will celebrate ten years with the company this year. Sorting Records in a Table If all the information you need is in one relatively small table, the quickest way to find information may be to sort the records in the table. Open the tblemployees table in ExampleDB, if it is not already open. The data currently is sorted by EmployeeID in the left column. Suppose that you would like to alphabetize the list according to employee s last names. Click on one of the cells in the Last Name field column. Then click on the Sort Ascending icon. You will now see that data sorted by last name. Practice: Sort the data by ZIP Code. Practice: Sort the data so that it again is listed according to Employee ID. 4

5 Retrieving Information with Queries One of the most powerful features of Access is the ability to create queries to help you find information. We will use the ExampleDB database to illustrate queries. Retrieving information from this database, which is made up of only two relatively small tables, may seem trivial, and it really is you can merely look at the tables. Keep in mind, though, that real-lifee databases, such as Banner, can contain thousandss of large tables and millions of records. Queries are the only practical way to retrieve information from such large databases. Suppose you would like to display the first and last names of all employees living in Spartanburg who were hired before 1/1/2000. We would like the list sorted in ascending order by hire date. Open ExampleDB if it is not already open. Click on Queries in the Objects list. Double-click on Create query in Design view. First we must specify which table contains the information we need. In the Show Table window that appears, you should see a list of tables in the database under the Tables tab. We need information about the city in which employees live and their hire date for our search. Alll of this information is in tblemployees. Select this table and click on the Add button. Then click on the Close button. 5

6 You should see the field names in the table displayed at the top of the Select Query window. Grab the junctions between sections of this window and stretch sections so that the window looks like the picture at the right. The Query window has two sections. 1. At the top you see the fields in the table(s) you have selected to use in the query. Note that the actual names of the fields are listed rather than their captions. 2. At the bottom you see the Design grid that you willl use to design your query. We want to add the fields for our query to the Design Grid. The query is What are the First Names and Last Names of Employees living in Spartanburg with a Hire Date before 1/1/2000? The fields we need to include in this query are shown below along with the three conditions (City = Spartanburg, Hire Date before 1/1/2000, sorted by Hire Date) EmployeeID (the primary key in the table) FirstName LastName City = Spartanburg HireDate = < 1/1/2000; Sorted First, select EmployeeID from the list of field names. Hold the mouse key down on the arrow and drag it down to the first Field in the Design grid. 6

7 Do the same for the other Fields you need. We now have the fields in the Design grid. Next we will enter the conditions. First, enter Spartanburg as the criterion for the City field. Next, move the cursor over to the Hire Date field column. Note that Access automatically surrounds Spartanburg with quotation marks, indicating that it is a character string value. Enter <1/1/2000 as the criterion for the Hire Date. When you move the cursor to another cell, note that Access automatically surrounds 1/1/2000 with pound signs, indicating that it is a date. Finally, click on the Sort cell in the Hire Date column. You will see a small menu icon appear in the right side of the cell. Open the menu and select Ascending. 7

8 We now have the conditions for the query set. To execute the query, click on the Run Query icon in the main toolbar You will see a table with the results of your query. To save the query, click on the Save icon. You will be prompted to name the query. Let s name it qryearlyhire. Note: After you have run a query, you can toggle back and forth between the Datasheet and Design Views of the query using the appropriate icons, just as you did with tables. 8

9 Comparison Operators and Wild Cards The hire date criterion in the above example used a comparison operator ( < for less than ). The table below lists other comparison operators that can be used to specify criteria in a query. Comparison Operator Meaning Example = Equal to = 100 > Greater than > 100 < Less than < 100 >= Greater than or equal to >= 100 <= Less than or equal to <= 100 <> Unequal to <>100 Between... and... Between two numbers Between 100 and 200 You also can use wild cards to match text with patterns. Wildcard Symbol Meaning Example * One or more characters r*g will find rig, rag, ring, rung and running? One alphabetic characters r?g will find rig and rag, but not ring or rung. [ ] Any character(s) within the brackets r[ia]ng will find ring and rang, but not rung [! ] Any character(s) not within the brackets r[!ia]ng will find rung, but not ring and rang [ - ] Any character within a range ra[l-p] will find ram, ran and rap, but not rag or rat. # Any single numeric character 10# will find 101 and 105. When you enter an expression that contains a wildcard, Access automatically places like in front of the expression: like r*g for example. An expression containing a wildcard must have quotation marks around it. Practice: Suppose you would like to list all employees (sorted by last name) who live in SC and who were hired in Design a query for this using a comparison operator and run the query. Save the query as qrysc2004_1. Practice: Suppose you would like to list all employees (sorted by last name) who live in SC and who were hired in Design a query for this using a wild card symbol and run the query. Save the query as qryall2004_2. Practice: Design a query that lists first and last names of all employees who live in Spartanburg or in Greer. (Hint: Look at the row below the Criteria: row in the Design grid.) Run and save the query as qrysptbggreer. 9

10 Practice: Design a query that lists all addresses with Zip codes beginning with 293. Run and save the query as qryzip293. Practice: Design a query to construct the data needed for a company directory. This is a list of employees sorted alphabetically by last name. Two employees with the same last name should be listed in order of their first names (and middle initial, if applicable. The rest of a listing should include address, city, state, ZIP code, and phone number. Name this query qrydirectory. Using this interface, you have constructed a query in Structured Query Language (SQL). You can view the SELECT statement by opening the query in design view and then selecting SQL View from the View Tool. The SQL associated with qryearlyhire is: SELECT tblemployees.lastname, tblemployees.firstname, tblemployees.city FROM tblemployees WHERE (((tblemployees.city)="spartanburg") AND ((tblemployees.hiredate)<#1/1/2000#)) ORDER BY tblemployees.city, tblemployees.hiredate; Fortunately, Access lets you construct a query by example by filling out a form and you don t have to learn SQL to use its power. Queries Using More Than One Table Most real-life relational databases are made of many tables and queries of often will involve more than one table. We will use EmployeesDB to illustrate how to create queries from multiple tables. Suppose you would like to list the salaries of all employees whom have been hired on 1/1/2004 and later. You would like to see their first and last names, their salaries and when they were hired. You want the records displayed with the highest salaries first. When we plan this query, we realize that the information we need is contained in two tables tblemployees and tblsalaries. To use two or more tables in a query, we must create a join between the tables. Usually one of the fields you are using for the join will be a primary key. If this is the case, and if the fields contain identical data, then the tables may be joined automatically when you add the two tables to a query. If not, then you may specify the fields to be joined. 10

11 Digression: Disabling Autojoins Note: If you do not want Access to automatically join tables, choose Tools, Options from the Access main menu. In the Options window, select the Tables/Queries tab. The Enable AutoJoin box probably will be checked. Uncheck the box if you do not want joins to be created automatically. Create a new query in Design View. In the Show Table window, Addd both tblemployees and tblsalaries to the query. Then Close the Show Table window. 11

12 Grab the Employee ID field name in the tblemployees list, hold the mouse key down, and drag it over the Employee ID field in the other list. Drop it there to join the two fields. When the two tables are joined, you will see a line connecting the two fields. Drag fields down from the two tables as shown here. Note that we are using fields from both tables. Add the Sort and Criteria needed for your query. When you are ready Run the query. The results of your query should look like this. Save the query. 12

13 Practice: Create a query that will list the names of all members of the department with ID 102. Include the name of the department. Sort the last names in ascending order. Run and Save the query. Practice: Create a query that will list the names of all members of the purchasing department and show if they are exempt or nonexempt from overtime pay. Sort by exempt or nonexempt status. Run and Save the query. Calculated Fields You also can include calculated fields in your queries. Consider the table, tblsalaries, which shows yearly salaries for each employee. Suppose that you need to display each employee s full name and their monthly, rather than yearly, salary. You would like the list sorted by monthly salary in descending order. Open the ExampleDB database and create a query using the tables tblemployees and tblsalaries. Drag the fields that you need into the Design View grid. Include the Salary field, which we will use to calculate the monthly salaries. We don t want to display the Salary field, so uncheck the Show box for the Salary field. In the empty field next to Salary, enter the following expression: MonthlySalary: [Salary]/12 This is a calculated field. 13

14 The first part on the left of the colon is the name of the calculated field. Anything in brackets is an existing field. Thus MonthlySalary: [Salary]/12 means define a calculated field named MonthlySalary, that is calculated by dividing the Salary field by 12. Sort on the MonthlySalary field in Descending order. We need to format this field so it will display as currency. Click on the calculated field cell to select it and then click on the Properties icon in the main toolbar. In the Field Properties window, set the Format to Currency. Also make the field s caption Monthly Salary. Run and Save the query. 14

15 Which Way of Retrieving Information is Best? In this lesson, we have learned about several different ways of retrieving information from a database Finding, Filtering, Sorting, and Queries. At this point it is a good idea to sit back and ask which is better. The answer depends on the situation. Finding is useful when you need to work with one specific record in a single table. If you need to change something in one specific record, a name for example, it usually is easiest to find it. Sorting is only useful for small tables. If you are working with a large table with thousands of records, it may be difficult to find information even after it has been sorted. Using a Filter or Sorting is faster than creating a query. If you need a quick and dirty way to retrieve information from one table, you might think about Filtering or Sorting. You can save queries. If you want to retrieve the same type of information more than once, creating and saving a query is the way to go. You can create queries involving multiple tables. If the data you need to retrieve is stored in more than one table, you will need to write a query to retrieve it. You can create reports based on queries. In the next lesson, you will learn how to write a report based on an existing query. 15

Microsoft Access 2007 Lesson 2: Retrieving Information from a Database

Microsoft Access 2007 Lesson 2: Retrieving Information from a Database Microsoft Access 2007 Lesson 2: Retrieving Information from a Database In this lesson you will learn how to construct queries to retrieve information from a database. It uses the example database (ExampleDB.accdb)

More information

Microsoft Access Lesson 3: Creating Reports

Microsoft Access Lesson 3: Creating Reports Microsoft Access Lesson 3: Creating Reports In the previous lesson the information you retrieved from a database always was in the form of a table. This may be all you need if you are the only person using

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

SECTION 4 USING QUERIES. What will I learn in this section?

SECTION 4 USING QUERIES. What will I learn in this section? SECTION 4 USING QUERIES What will I learn in this section? Select Queries Creating a Query Adding a Table to Query Adding Fields to Query Single Criteria Hiding column in a Query Adding Multiple Tables

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

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

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

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

Microsoft Access 2002 for Windows

Microsoft Access 2002 for Windows Microsoft Access 2002 for Windows Handout: 2 Academic Computing Support Information Technology Services Tennessee Technological University February 2004 1. Opening the File In the PC labs, from the Start

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

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

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

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

Microsoft Office 2010: Introductory Q&As Access Chapter 2

Microsoft Office 2010: Introductory Q&As Access Chapter 2 Microsoft Office 2010: Introductory Q&As Access Chapter 2 Is it necessary to close the Navigation Pane? (AC 78) No. It gives you more room for the query, however, so it is usually a good practice to hide

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

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

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access This module was developed to assist students in passing the SkillCheck Incorporated Access 2003 Technology Competency Assessment. It was last updated

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

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

Skills Exam Objective Objective Number. Creating crosstab queries Create a crosstab query

Skills Exam Objective Objective Number. Creating crosstab queries Create a crosstab query 12 Advanced Queries SKILL SUMMARY Skills Exam Objective Objective Number Creating crosstab queries Create a crosstab query. 3.1.2 Creating a subquery Add fields. Remove fields. Group data by using comparison

More information

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities ACCESS SUMMARIZING DATA AND CALCULATING IN FORMS AND REPORTS Section 4 Skills Use functions in a query to calculate statistics Summarize data in a crosstab query Summarize data in a PivotTable Summarize

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

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

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports Version 07/11/09 Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Subforms, and the Lookup Wizard May 2009 by Floyd Jay Winters and Julie Manchester winterf@mccfl.edu Database

More information

ITEC 101 LAB 9 USING A DATABASE: Tables and Queries

ITEC 101 LAB 9 USING A DATABASE: Tables and Queries ITEC 101 LAB 9 USING A DATABASE: Tables and Queries In the last lab, we saw how a spreadsheet can be useful for organized storage of information. Some kinds of information, however, have more structure

More information

Links to Activities ACTIVITY 3.1. Links to Activities ACTIVITY 3.

Links to Activities ACTIVITY 3.1. Links to Activities ACTIVITY 3. ACCESS CREATING QUERIES, FORMS, AND REPORTS Section 3 0 Skills Create a select query using the Simple Query Wizard Create a select query in Design view Add multiple tables to a query Sort the query results

More information

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

More information

Database Concepts Using Microsoft Access

Database Concepts Using Microsoft Access lab Database Concepts Using Microsoft Access 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

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

Microsoft Access 2016 Intro to Select Queries

Microsoft Access 2016 Intro to Select Queries Microsoft Access 2016 Intro to Select Queries training@health.ufl.edu Access 2016: Intro to Select Queries 2.0 hours Queries compile data from tables into a desired dataset. You can choose multiple fields

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

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING CRITERIA

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

Excel 2013 Next Steps

Excel 2013 Next Steps Excel 2013 Next Steps ADULT SERVICES DEPARTMENT CRYSTAL LAKE PUBLIC LIBRARY 126 W. PADDOCK STREET CRYSTAL LAKE, IL 60014 815-459-1687, X7 WWW.CLPL.ORG Agenda 2 Home Toolbar Alignment Group Number Formats

More information

Introduction to PeopleSoft Query. The University of British Columbia

Introduction to PeopleSoft Query. The University of British Columbia Introduction to PeopleSoft Query The University of British Columbia December 6, 1999 PeopleSoft Query Table of Contents Table of Contents TABLE OF CONTENTS... I CHAPTER 1... 1 INTRODUCTION TO PEOPLESOFT

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

REPORT WRITER MANUAL (Version 10)

REPORT WRITER MANUAL (Version 10) REPORT WRITER MANUAL (Version 10) 2 Report Writer - Navigation You may access Report Writer by choosing view from your toolbar and selecting Report Writer or by choosing the Report Writer option when you

More information

Microsoft. Student Edition. The Richard Stockton College of New Jersey. Computer Courseware

Microsoft. Student Edition. The Richard Stockton College of New Jersey. Computer Courseware Microsoft Working with Queries in Access 2002 Student Edition The Richard Stockton College of New Jersey Computer Courseware CustomGuide.com granted to Computer and Telecommunication Services a license

More information

Microsoft Word 2000 Mail Merge

Microsoft Word 2000 Mail Merge Microsoft Word 2000 Mail Merge Quick Reference Guide Page 1 Page 2 Page 3-6 Page 7 Page 8-10 Overview Creating the Form Letter The Mail Merge Helper Step One: Creating the Main Document Step Two: Working

More information

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action queries and how to create queries that perform more

More information

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide

BE Share. Microsoft Office SharePoint Server 2010 Basic Training Guide BE Share Microsoft Office SharePoint Server 2010 Basic Training Guide Site Contributor Table of Contents Table of Contents Connecting From Home... 2 Introduction to BE Share Sites... 3 Navigating SharePoint

More information

Access 2003 Introduction to Report Design

Access 2003 Introduction to Report Design Access 2003 Introduction to Report Design TABLE OF CONTENTS CREATING A REPORT IN DESIGN VIEW... 3 BUILDING THE REPORT LAYOUT... 5 SETTING THE REPORT WIDTH... 5 DISPLAYING THE FIELD LIST... 5 WORKING WITH

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

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

Create and Modify Queries 7

Create and Modify Queries 7 Create and Modify Queries 7 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Query Create a Select query. 4.1.1 Modifying a Query Use the Show Table command. 4.2.1 Use the Remove Table

More information

Tutorial: How to Use ERI's Executive Compensation Assessor

Tutorial: How to Use ERI's Executive Compensation Assessor 1 1 Tutorial: How to Use ERI's Executive Compensation Assessor Welcome to ERI's Executive Compensation Assessor (XA). From now on in this tutorial, we'll refer to it by its abbreviation, XA. This tutorial

More information

Microsoft Access 2010 Select Queries

Microsoft Access 2010 Select Queries Microsoft Access 2010 Select Queries Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Access 2010: Select Queries 2.0 hours Topics include table filters, select queries,

More information

Microsoft Access XP (2002) Reports

Microsoft Access XP (2002) Reports Microsoft Access XP (2002) Reports AutoReports Report Wizards Manually Design a Report Table Relations Multitable Reports Mailing Labels Mail Merge with MS Word Table of Contents INTRODUCTION TO REPORTS...

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

TUTORIAL Get Started with Tableau Desktop

TUTORIAL Get Started with Tableau Desktop TUTORIAL Get Started with Tableau Desktop Learn how to connect to data, create data visualizations, present your findings, and share your insights with others. http://onlinehelp.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorialhome.html

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Human Resource Management System User Guide

Human Resource Management System User Guide 11.0 Human Resource Management System User Guide Unit 0: Introduction Unit 1: HRMS Basics Unit 2: DateTracking Unit 3: Hiring a New Employee Unit 4: Electronic Approvals Unit 5: Maintaining Existing Employees

More information

Problem Solving Using Access 2007

Problem Solving Using Access 2007 P L U G - I N T7 Problem Solving Using Access 2007 LEARNING OUTCOMES Describe the process of using the Query Wizard using Access. Describe the process of using the Design view for creating a query using

More information

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Learning Worksheet Fundamentals

Learning Worksheet Fundamentals 1.1 LESSON 1 Learning Worksheet Fundamentals After completing this lesson, you will be able to: Create a workbook. Create a workbook from a template. Understand Microsoft Excel window elements. Select

More information

Database Design Lab: MS Access Queries

Database Design Lab: MS Access Queries Database Design Lab: MS Access Queries 1. Download lab6.accdb and rename it to lab7.accdb. 2. Create a simple query named qryauthor that has a Name attribute (i.e. Firstname Lastname ). a) Open lab6.accdb.

More information

MODULE 5 DATABASES. Content

MODULE 5 DATABASES. Content MODULE 5 DATABASES Module Goals Module 5 - Databases, requires candidates to understand some of the basic concepts of databases demonstrate the ability to use a database on a personal computer. Candidates

More information

I.A.M. National Pension Fund Remittance Report Software

I.A.M. National Pension Fund Remittance Report Software I.A.M. National Pension Fund Remittance Report Software The USER S GUIDE INTRODUCTION The I.A.M. National Pension Fund Remittance Report Software version 2.0 (IAMNPF RR Software) is a program created to

More information

Access 2007: Advanced Instructor s Edition

Access 2007: Advanced Instructor s Edition Access 2007: Advanced Instructor s Edition ILT Series COPYRIGHT Axzo Press. All rights reserved. No part of this work may be reproduced, transcribed, or used in any form or by any means graphic, electronic,

More information

Information from Your

Information from Your UNIT 2 PROJECT 12 Retrieving Information from Your Database IN THIS PROJECT, YOU LEARN HOW TO Find Records Sort Records Filter Records Create Select Queries Create Compound Queries and Use Comparison Operators

More information

Using Access. Introduction. Creating Simple Queries LEARNING OUTCOMES

Using Access. Introduction. Creating Simple Queries LEARNING OUTCOMES P L U G - I N T7 Problem Solving Using Access LEARNING OUTCOMES 1. Describe the process of using the Simple Query Wizard using Access. 2. Describe the process of using the Design view for creating a query

More information

Database Use & Design

Database Use & Design Database Use & Design 1 Important Terms and Definitions Database A collection of information organized in such a way that a computer program can quickly select desired pieces of data. Field Form Primary

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

Access Module 2: Building and Using Queries

Access Module 2: Building and Using Queries 1. A query allows the selection of a subset of fields and records from one or more tables, then presents the selected data as a single datasheet. True REFERENCES: Access 28 Use the Query Wizard LEARNING

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS USING ACCESS TO CREATE A SCIENCE DATABASE A database allows you to enter, store, retrieve, and manipulate data efficiently. You will first design your database and enter information into a table called

More information

Lesson Skill Matrix Skill Exam Objective Objective Number

Lesson Skill Matrix Skill Exam Objective Objective Number Lesson 6 Page 1 Creating Tables Lesson Skill Matrix Skill Exam Objective Objective Number Creating a Table Create a table by specifying rows and columns. 3.1.3 Formatting a Table Apply table styles. 3.1.4

More information

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only)

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) ECDL Module 5 WORKBOOK Databases Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) PAGE 2 - ECDL MODULE 5 (OFFICE XP) - WORKBOOK 1995-2007 Cheltenham Courseware Ltd. All trademarks acknowledged.

More information

Contents. Creating Forms

Contents. Creating Forms Access 2007 Forms Contents Creating Forms... 3 Creating a new form 3 Design view and Form view 5 Creating a user-defined form 5 Changing the look of your form... 6 Layout View 6 Design View 6 Moving and

More information

BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings

BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings BrainyBetty.Com presents: Mail merge I: Use mail merge for mass mailings Course contents Overview: Mailings en masse Lesson 1: How it works Lesson 2: Set up your recipient list Lesson 3: Perform a complete

More information

Complete Quick Reference Summary

Complete Quick Reference Summary Microsoft Access 2010 Complete Quick Reference Summary Microsoft Access 2010 Quick Reference Summary Advanced Filter/Sort, Use AC 153 Advanced button (Home tab Sort & Filter, Advanced Filter/Sort) All

More information

Skill Exam Objective Objective Number

Skill Exam Objective Objective Number Creating Tables 6 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Table Create a table by specifying rows and columns. 3.1.3 Formatting a Table Apply table styles. 3.1.4 Managing Tables

More information

JARGON FREE TRAINING. MS Access A Jargon Free Guide. Paul Barnett 7/31/2010. For complete, no nonsense training visit

JARGON FREE TRAINING. MS Access A Jargon Free Guide. Paul Barnett 7/31/2010. For complete, no nonsense training visit JARGON FREE TRAINING MS Access 2010 A Jargon Free Guide Paul Barnett 7/31/2010 For complete, no nonsense training visit A quick guide to some features in MS Access 2010 and an insight into Jargon Free

More information

Microsoft Access XP (2002) Switchboards & Macros

Microsoft Access XP (2002) Switchboards & Macros Microsoft Access XP (2002) Switchboards & Macros Group/Summary Operations Creating a Switchboard Creating Macro Buttons From Wizards Creating Macros Manually Using the Condition Column Start Up Parameters

More information

When you start Microsoft Access, the upper left of your screen looks like this.

When you start Microsoft Access, the upper left of your screen looks like this. Basic Queries in Access 2010: Filtering Ira Chinoy / JOUR 772 & 472 / Philip Merrill College of Journalism Access is a program that allows us to examine the information in a database several different

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management 15.561 IT Essentials Spring 2005 An Introduction to Microsoft Access * Lecture Script 1. Introduction Open Database: Northwind.mdb Select

More information

Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla

Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla Based on slides by Robert Grauer, Keith Mast, Mary Anne Poatsy COMP1000 Pearson Education 2011 or UNSW, CRICOS Provider No:

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

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

Introduction... 1 Portal functionalities... 2 How to view, enlarge, save or print a paystub... 5

Introduction... 1 Portal functionalities... 2 How to view, enlarge, save or print a paystub... 5 Helpful Tips Navigation through the Metro Paystub Portal Summary Introduction... 1 Portal functionalities... 2 How to view, enlarge, save or print a paystub... 5 Introduction This document contains instructions

More information

FOCUS ON: DATABASE MANAGEMENT

FOCUS ON: DATABASE MANAGEMENT EXCEL 2002 (XP) FOCUS ON: DATABASE MANAGEMENT December 16, 2005 ABOUT GLOBAL KNOWLEDGE, INC. Global Knowledge, Inc., the world s largest independent provider of integrated IT education solutions, is dedicated

More information

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design Objective 1: Identify Good Database Design CHAPTER 6 SUMMARY A database is an organized collection of data facts about people, events, things, or ideas related to a specific topic or purpose. Information

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 5 Using Databases ECDL Syllabus 5 Courseware Module 5 Contents UNDERSTANDING DATABASES... 1 KEY CONCEPTS... 1 DATABASE ORGANIZATION...

More information

GOOGLE SHEETS MANAGING YOUR DATA

GOOGLE SHEETS MANAGING YOUR DATA GOOGLE SHEETS MANAGING YOUR DATA TABLE OF CONTENTS USING GOOGLE SHEETS AS A DATABASE... 1 CREATING A DATABASE... 2 DATA MENU... 3 SORTING LISTS... 4 SORTING IN ASCENDING/DESCENDING ORDER... 5 FILTERING

More information

GETTING STARTED: Let s start by getting familiar with moving around in Access.

GETTING STARTED: Let s start by getting familiar with moving around in Access. Basic Queries in Access 2007: Filtering Ira Chinoy / JOUR 772 & 472 / Philip Merrill College of Journalism Access is a program that allows us to examine the information in a database several different

More information

SSIS Grids. Table of Contents

SSIS Grids. Table of Contents SSIS Grids Table of Contents SSIS Grid Options... 3 Grid Basic Navigation Options... 4 How to Access SSIS Grid Options:... 4 Move Columns in a Grid... 5 How to Reposition or Move a Column in a Grid:...

More information

User Manual Mail Merge

User Manual Mail Merge User Manual Mail Merge Version: 1.0 Mail Merge Date: 27-08-2013 How to print letters using Mail Merge You can use Mail Merge to create a series of documents, such as a standard letter that you want to

More information

Restricting and Sorting Data. Copyright 2004, Oracle. All rights reserved.

Restricting and Sorting Data. Copyright 2004, Oracle. All rights reserved. Restricting and Sorting Data Objectives After completing this lesson, you should be able to do the following: Limit the rows that are retrieved by a query Sort the rows that are retrieved by a query Use

More information

Microsoft Access 2007 Tutorial. Creating a Database using Access 2007

Microsoft Access 2007 Tutorial. Creating a Database using Access 2007 Creating a Database using Access 2007 Created: 12 December 2006 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

Name: Class: Date: Access Module 2

Name: Class: Date: Access Module 2 1. To create a new query in Design view, click CREATE on the ribbon to display the CREATE tab and then click the button to create a new query. a. Query b. Design View c. Query Design d. Select Query ANSWER:

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 3

Microsoft Office 2010: Introductory Q&As Access Chapter 3 Microsoft Office 2010: Introductory Q&As Access Chapter 3 Is the form automatically saved the way the report was created when I used the Report Wizard? (AC 142) No. You will need to take specific actions

More information

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax

Administration. Training Guide. Infinite Visions Enterprise Edition phone toll free fax Administration Training Guide Infinite Visions Enterprise Edition 406.252.4357 phone 1.800.247.1161 toll free 406.252.7705 fax www.csavisions.com Copyright 2005 2011 Windsor Management Group, LLC Revised:

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

Microsoft Excel 2010

Microsoft Excel 2010 www.jadehorizon.com Microsoft Excel 2010 Sorting and Filtering Sorting and Filtering Microsoft Excel 2010 Table of Contents Table of Contents INTRODUCTION... 3 CONVENTIONS... 3 TABLE DESIGN RULES... 5

More information

Chapter 2 The Design Window

Chapter 2 The Design Window Chapter 2 Objectives Chapter 2 The Design Window Learn about Crystal sections Move objects Use Toolbars, Icons, and Menus Format fields Add Special Fields Change a Group Use the Crystal Field Explorer

More information

Financial Advisory Services & Training Financial Services Department

Financial Advisory Services & Training Financial Services Department Work Instruction Line Item Functionality LIF_SUP When to Use Use the functions available to design a custom report output view. These functions may be used in all reports which have the following or similar

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information