Microsoft Access 2007 Lesson 2: Retrieving Information from a Database

Size: px
Start display at page:

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

Transcription

1 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) 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) We want to find the last name Bullock. Select the Last Name column. Choose the Home tab and click on the Find icon. In the window that pops up, enter Bullock in the Find What: text box. Select Last Name in the Look In list. Click on Find Next. When you find the record, edit it to reflect the new personal information. 2/9/2008 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 Selection Filter button. In the menu that appears, click on Equals NC. You should see only the NC employees displayed. Click on the Toggle Filter button to remove the filter. In Class Practice: List only the employees who work in the department with ID 106. In Class Practice: List only the employees who do not work in the department with ID 106. In Class Practice: List only the employees who live in Spartanburg and who work in the department with ID /9/2008 2

3 Filtering by Form You also can do more complex filtering than by selection. Suppose, for example that you would like to see only those employees who have been hired after 1/1/2000. Click on the Advanced Filter button and Clear All Filters. Then choose Filter by Form under Advanced Filters and enter >1/1/2000 in the Hire Date field. Click Advanced Filter and Apply Filter/Sort. 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 the Funnel icon by Hire Date and the word Filtered near the navigation buttons. Click on Toggle Filter to remove the filter. 2/9/2008 3

4 A wide variety of filtering expressions is available. Consult Access Help s Filtering Data topic for more details and examples. In Class Practice: Use Filter by Form to list only the employees living in Spartanburg who were hired before January 1, In Class Practice: Use Filter by Form to list all the employees whose last name starts with W. (Remember that an asterisk often is used as a wild card symbol.) In Class Practice: Use Filter by Form to list the all employees who live on Tio Lane. In Class 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 the Last Name field. Then click on the Sort Ascending icon. You will now see that data sorted by last name. P r In Class Practice: Sort the data by ZIP Code. In Class Practice: Sort the data so that it again is listed according to Employee ID. 2/9/2008 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-life databases, such as Banner, can contain thousands 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. Under the Create tab, click on Query Design. 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. All of this information is in tblemployees. Select this table and click on the Add button. Then click on the Close button. 2/9/2008 5

6 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 will use to design your query. We want 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. 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. Do the same for the other fields needed for the query. 2/9/2008 6

7 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. We now have the conditions for the query set. To execute the query, click on the Run button. The results of the query will be shown in the Datasheet View... 2/9/2008 7

8 After you have run a query, you can move back to its Design View using the View menu. To save the query, click on the Save icon. You will be prompted to name the query. Let s name it qryearlyhire. Close the query by clicking on the Close icon in the upper right corner of the query window. DO NOT close the database. 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 character 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 /9/2008 8

9 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. In Class Practice: Suppose you would like to list all employees (sorted in ascending order 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. In Class 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. In Class 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. In Class Practice: Design a query that lists all addresses with Zip codes beginning with 293. Run and save the query as qryzip293. (Hint: if you use wildcards, use the form Like..... ) In Class 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. (Hint: When sorting on more than one field, the field to be sorted first must be listed first in the query.) Listing Database Objects At this point, only tables probably are listed in the left of the Access window. Now that we have created a query, we would like to include it in the list. Click on the downward arrow icon to display a menu of objects to list. 2/9/2008 9

10 Select All Access Objects to display the queries along with the tables. 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. Create a new query in Design View. In the Show Table window, Add both tblemployees and tblsalaries to the query. Close the Show Table window. 2/9/

11 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. This indicates that the joined fields in the two tables represent the same variable. By joining the fields, we have related the tables to each other. This is the origin of the term relational database. 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 as qryafter2003salaries. 2/9/

12 In Class 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. In Class 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. 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. Sort it in Descending order. 2/9/

13 Right-click on Monthly Salary and select Properties from the menu. In the Property Sheet format the calculated field as Currency. Run and Save the query. What is the Best Way of Retrieving Information? 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. 2/9/

Microsoft Access Lesson 2: Retrieving Information from a Database

Microsoft Access Lesson 2: Retrieving Information from a Database 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)

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

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

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

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

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 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

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 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

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 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

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

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

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

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

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

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

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

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

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

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 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

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

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

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

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 (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

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

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

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

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

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

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

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

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

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

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

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

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

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

Filter and PivotTables in Excel

Filter and PivotTables in Excel Filter and PivotTables in Excel FILTERING With filters in Excel you can quickly collapse your spreadsheet to find records meeting specific criteria. A lot of reporters use filter to cut their data down

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

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

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

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

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

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

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

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

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

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

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

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

First things first. I need to start my discussion of using Excel for data

First things first. I need to start my discussion of using Excel for data In This Chapter Figuring out tables Building tables Chapter 1 Introducing Excel Tables Analyzing tables with simple statistics Sorting tables Discovering the difference between using AutoFilter and filtering

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

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

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

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

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

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

Sorting your Database

Sorting your Database Sue Doogan 10/12/2015 08:41 Sorting your Database You are often asked to put your database into some sort of order, eg alphabetically, numerically or date order. This is easy if you are just being asked

More information

First things first. I need to start my discussion of using Excel for data

First things first. I need to start my discussion of using Excel for data In This Chapter Figuring out tables Building tables Chapter 1 Introducing Excel Tables Analyzing tables with simple statistics Sorting tables Discovering the difference between using AutoFilter and filtering

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

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

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

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

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 Excel 2007 Lesson 7: Charts and Comments

Microsoft Excel 2007 Lesson 7: Charts and Comments Microsoft Excel 2007 Lesson 7: Charts and Comments Open Example.xlsx if it is not already open. Click on the Example 3 tab to see the worksheet for this lesson. This is essentially the same worksheet that

More information

EDITING AN EXISTING REPORT

EDITING AN EXISTING REPORT Report Writing in NMU Cognos Administrative Reporting 1 This guide assumes that you have had basic report writing training for Cognos. It is simple guide for the new upgrade. Basic usage of report running

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

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. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1 Access 2010 Working with Tables Introduction Page 1 While there are four types of database objects in Access 2010, tables are arguably the most important. Even when you're using forms, queries, and reports,

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 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

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

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 Copyright 2004, Oracle. All rights reserved. Objectives After completing this lesson, you should be able to do the following: Limit the rows that are retrieved by a query Sort

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

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

Book IX. Developing Applications Rapidly

Book IX. Developing Applications Rapidly Book IX Developing Applications Rapidly Contents at a Glance Chapter 1: Building Master and Detail Pages Chapter 2: Creating Search and Results Pages Chapter 3: Building Record Insert Pages Chapter 4:

More information

Intro to databases with MS Access

Intro to databases with MS Access Intro to databases with MS Access There is a sense in which almost any non-trivial computer program is a database program the sense that a computer program operates on some base of data. However, what

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

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

CHAPTER TWO: SPREADS HEETS WITH EXCEL 1

CHAPTER TWO: SPREADS HEETS WITH EXCEL 1 CHAPTER TWO: SPREADS HEETS WITH EXCEL 1 CHAPTER 2 SPREADSHEETS WITH EXCEL TOPIC Create Pivot Tables Create and Modify Charts Sort and Filter CHAPTER TWO: SPREADS HEETS WITH EXCEL 2 CREATE AND MODIFY CHARTS

More information

UNIT 2 Designing and Managing Database Objects. Each of the following statements is either true or false. Indicate your choice by circling T or F.

UNIT 2 Designing and Managing Database Objects. Each of the following statements is either true or false. Indicate your choice by circling T or F. UNIT 2 LESSON 5 AC-170 Concepts Review UNIT 2 Designing and Managing Database Objects True/False Questions Each of the following statements is either true or false. Indicate your choice by circling T or

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

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide

Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Updated: 10/17/2018 Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting User Guide Table of Contents Data Warehouse Business Objects (BOBJ) Ad Hoc Reporting... 3 Introduction... 3 Getting Started...

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

Select a report and click this to view it. Select a report and click this to change it.

Select a report and click this to view it. Select a report and click this to change it. Quick Videos: A tutorial on creating reports. Shows reports you have created.s Not used by the county Reports pre-made by the county Reports pre-made by 4-H Online Shows reports and folders you have deleted.

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

Chronodat Help Desk (Lite)

Chronodat Help Desk (Lite) Chronodat Help Desk (Lite) (User Manual) By CHRONODAT, LLC For further information, visit us at www.chronodat.com For support, contact us at support@chronodat.com Version 2.0.0.0 Created: 10-03-2018 1

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

Microsoft Access 2016

Microsoft Access 2016 Access 2016 Instructor s Manual Page 1 of 10 Microsoft Access 2016 Module Two: Querying a Database A Guide to this Instructor s Manual: We have designed this Instructor s Manual to supplement and enhance

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 2016

Microsoft Access 2016 Access 2016 Instructor s Manual Page 1 of 10 Microsoft Access 2016 Module Two: Querying a Database A Guide to this Instructor s Manual: We have designed this Instructor s Manual to supplement and enhance

More information

Report Fundamentals An introduction to basic report functionality in SAP.

Report Fundamentals An introduction to basic report functionality in SAP. Report Fundamentals An introduction to basic report functionality in SAP. Budget Office Texas State University-San Marcos 601 University Drive JCK 820 San Marcos, TX 78666 512-245-2376 budget@txstate.edu

More information

Enterprise Timetabler Beginners Training Worksheet 1

Enterprise Timetabler Beginners Training Worksheet 1 Enterprise Timetabler Beginners Training Worksheet 1 1. Basic Customisation of the Enterprise Interface It is possible to change the default layouts of the Activity and View panes to show extra information

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