Using Microsoft Access

Size: px
Start display at page:

Download "Using Microsoft Access"

Transcription

1 Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1

2 What is a Query? Queries allow the user to manipulate the data stored in tables Queries fall into two broad categories: Select Queries these answer questions by returning data subsets based on given criteria and are the most common types of queries Action Queries these allow the user to manipulate table data by appending, deleting, or updating data 3 The Select Query A select query is a way of asking a question of the data stored in a table or tables within a database Select queries can answer questions such as: List all employees by last name alphabetically. Which employees live in a specific Zip code? How many employees have a salary greater than $50,000? Which employees are assigned to which project? Returns only a subset of the data Allows the user to choose the data and the order of the data to be displayed The results of a query, sometimes called the return, answers the question 4 2

3 Download Sample Databases Be sure to Enable Content Once the database is downloaded, open it and take a look at the tables in both design view and datasheet view. Look at the types of data that the table stores and the values that are stored within the table. It is important to know what kind of data you are dealing with before you ask a question (or create a query). 5 Creating the Select Query To create a query, click the Create tab and then click Query Design On the Show Table dialog box, select the Employees table and click Add and then Close 6 3

4 Creating the Select Query This block is called a Field List and shows the names of the fields in the Employees table The area at the bottom is called the Query Design Grid. It is where the query is built from elements of the Field List 7 Creating the Select Query Now you can begin to add fields from the table in the upper portion of the design window to the lower design grid. There are three ways to do that: Click and drag items from the table in the upper half of the query design screen onto the design grid on the lower half of the design screen; Double click an item in the table in the upper half of the query design screen and that field will populate the next available field or; Use the drop down boxes in the Field line of the design grid on the lower half of the design screen to select the fields you want in your query. 8 4

5 Creating the Select Query Click on the View Button to see the results of your query Yes, you could use the RUN! Command to view your query results, but it s best to get into the practice of using View. RUN! combined with a an Action Query could have disastrous and irreversible consequences. 9 Saving the Select Query To Save the query, click the save icon in the Quick Access Toolbar. On the Save As dialog box, give your query a name that starts with the letter Q. Be descriptive in your names but don t use any spaces. 10 5

6 Saving the Select Query Q_EmployeeNames should now appear in the Objects Bar under Queries. If not, click on the All Access Objects drop down list arrow and choose All Access Objects 11 Sorting the Select Query Results We can improve the Q_EmployeeNames query by sorting the results. In the design grid, on the Sort row, we have three choices for sorting: 1. Ascending A to Z 2. Descending Z to A 3. (not sorted) this is used to remove an existing sort 12 6

7 Sorting the Select Query Sorting Ascending on Last Name produces only so-so results. Although everyone is sorted by last name, the staff are still out of order by first name. Notice that Donald Duck comes before Daisy Duck. Let s add sorts to both first and last names. 13 Sorting the Select Query Return to Design View by clicking the View command on the Ribbon s Home Tab. Use the drop down box to add Sort Ascending to both FirstName and LastName. 14 7

8 Sorting the Select Query The results are disappointing. Steven, who should be first, is now at the bottom. What happened? Sorts go from left to right, so FirstName was sorted first and then LastName. This is NOT the right way to do this sort. Click the View command to return to Design View 15 Sorting the Select Query Uncheck the Show Box 1. Add FirstName to the design grid again be sure that it is to the right of the LastName field 2. Change the sort order for the left most instance of FirstName to (not sorted) 3. Keep the Sort Ascending for LastName 4. Add a sort to the second, right most instance of FirstName, but deselect (uncheck) the Show checkbox so this column will not appear in the results 5. LastName will be the first field sorted since it is the leftmost field with a sort 6. By including two FirstName fields we can arrange the sort correctly, and display the columns in the proper order 16 8

9 Sorting the Select Query The results are now correct. Steven Buchanan is at the top, Daisy Duck is the first of the Ducks and Michael Suyama is at the bottom. Note that the second FirstName field in the design grid does not display in the results, but is used for the sort. It does not display because we unchecked the Show box. 17 Use the Save As Icon in the Quick Access toolbar to save this query as Q_EmployeeNamesAlphabetical One Criteria Queries Text Criteria If we only wanted employees from a specific city in our results, we could use a text criteria to limit the results To do this Add City to design grid On the Criteria line, under City add the text Buena Vista Access will add quotes around it for you meaning that it recognizes this input as text You must spell it exactly correctly or the query s result will be blank Click the View command to see the results 18 9

10 One Criteria Queries Text Criteria The results display only those employees in that live in the city of Buena Vista Text criteria could be use in any text field in the design grid. Other examples of text criteria in a select query would be: Mouse in the LastName field Pittsburgh in the CITY field TX in the STATE field in the ZipCode field remember that in this case Zip Codes are text, not numbers, and are identified by the double quote marks Save this query as Q_EmployeeNamesAlphabetical_BuenaVista 19 Wildcards Wildcards take the place of one or more characters in the query s criteria * = Many characters? = One character In the sample above, under LastName, enter D* and hit enter. Access will finish it with the words Like and add quotes around the text D* This will return anyone whose last name starts with the letter D 20 10

11 Wildcards In this example, we use an * at the beginning and end of the phrase blvd in the Address column which, note is not displayed to return all instances where an Address contains the acronym blvd This will capture: Ms. Laura Callahan th Blvd. N.E. Ms. Janet Leverling 722 Moss Bay Blvd. Mr. Mickey Mouse 782 Bueana Vista Blvd Mr. Michael Suyama Coventry Blvd #1A 21 Wildcards In this example, we use an? at the end of the criteria for ZipCode this will return any employee whose first four zip code digits are 3283 This will capture: Ms. Daisy Duck Mr. Dewey Duck Mr. Donald Duck Mr. Huey Duck Mr. Louie Duck Mr. Mickey Mouse Ms. Minnie Mouse

12 Comparison Operators in Queries Used with numbers (all types), currency and date/time fields Expression Example =10 All values equal to 10 <>10 All values NOT equal to 10 >10 All values greater than 10 >=10 All values greater than or equal to 10 <10 All values less than 10 <=10 All values less than or equal to 10 Is Null Used to find blank fields Is Not Null Used to find fields with data 23 One Criteria Queries Number Criteria We can also use number criteria to limit the results of our query. Add the Ratings field to the design grid Ratings are Singles (numbers with decimal values) that range from 0.00 to 4.00 Typically a range is specified when using number criteria, such as < 2 meaning all numbers less than 2 > 2 meaning all numbers greater than 2 Between 2 And 3 meaning all numbers greater than 2, but less than 3 It is rare to use an exact number because that would require an exact match and return very few results 24 12

13 One Criteria Queries Number Criteria Less than 2 Greater than 2 Select query using number criteria set to display all employees with a rating of less than 2. Select query using number criteria set to display all employees with a rating of greater than One Criteria Queries Yes/No Criteria In this query we include the field name Certified in the design grid and to set the criteria to Yes to return all those employees who are certified Only those employees who are certified appear in the results A checked boxes means YES (or True or On). An unchecked box means No (or False or Off) 26 13

14 One Criteria Queries Date Criteria We can also use date or time criteria to limit the results of our query. Add the BirthDate field to the design grid The BirthDate field use the Date/Time data type and stores dates as serial numbers which allows for date and time calculations It is rare to use an exact date or time because that would require an exact match and return very few results 27 One Criteria Queries Date Criteria Like numbers, a range is typically specified when using date/time criteria, such as < #1/1/1981 meaning all dates before January 1, 1981 > #1/1/1981 meaning all dates after January 1, 1981 Between #1/1/1981# And #12/31/1990# meaning all dates after January 1, 1981 but before December 31, 1990 Do NOT enter the pound signs let Access do that for you 28 14

15 One Criteria Queries Date Criteria Results showing only those employees born in the 1980 s Save as Q_EmloyeeNamesAlphabetical_the80s 29 Queries with Ands and Ors Queries using Ands Condition 1 Condition 2 Outcome True True True True False False False True False False False False Queries using Ors Condition 1 Condition 2 Outcome True True True True False True False True True False False False AND versus OR Using AND to join criteria limits the results since it is necessary to meet all of the specified criteria Using an OR to join criteria expands the results since it is necessary to meet only one of the specified criteria 30 15

16 And Query Two Criteria joined by an And In this example we use two criteria joined by an AND therefore BOTH conditions must be TRUE in order to be displayed in the results Criteria 1 Ratings below 2.5 Criteria 2 Salary above $50,000 (note that we omit the dollar sign and comma in the query design grid) This query is asking the employees table, Which employees have ratings below 2.5 AND a salary above $50,000? 31 Or Query Two Criteria joined by an Or In this example we use two criteria joined by an OR therefore EITHER condition must be TRUE in order to be displayed in the results Criteria 1 Ratings below 2.5 Criteria 2 Salary above $50,000 (note that we omit the dollar sign and comma in the query design grid) This query is asking the employees table, Which employees have ratings below 2.5 or a salary above $50,000? 32 16

17 Queries with Ands and Ors Queries using Ands Queries using Ors And queries line up criteria across on the same line. Or queries stagger criteria using the criteria line and the or line. All the blank lines below the first or line in the design grid are for more Ors. 33 Using an OR One Field To use two criteria one field using an OR, stack them vertically. This query shows an alphabetical list of our employees from Pennsylvania or Washington. After closing and reopening, Access may reorganize your query as shown 34 17

18 Parameter Queries Parameter Queries prompt the user for input Enter the prompt on the criteria line within square brackets Use a meaningful prompt If the user misspells the input no results 35 Creating Calculations in Queries In the design grid modify the existing Q_EmloyeeNamesAlphabetical query by adding the Dependents field from the field list In the next column, in the field cell, right click and choose Zoom 36 18

19 Creating Calculations in Queries using Zoom After entering the formula, click OK to close Zoom dialog box. In the Zoom dialog box enter the following text: Benefit Costs: [dependents]*1500 This text is in three parts: Benefit Costs this is a new field name that you have created by typing it in : the colon separates the new field name from the calculation [dependents]*1500 this is a calculation multiplying the value in the dependents field by 1500 note the square brackets they are used to designate this word as a field name Access will add these for you 37 Formatting Calculations in Queries Back at the design grid, right click Benefit Cost, choose properties and on the properties pane, set the format to Currency 38 19

20 Creating Calculations in Queries Save As Q_EmloyeeNamesAlphabetical_BenefitCost 39 Using the Expression Builder The expression builder allows you access to many prebuilt functions as well as individual fields from the databases tables This query will use the expression builder to use a nested IIf function to give a raise to staff with a rating greater than 2.5 and salary less than IIf has three parts: Logical Test True False Look familiar?? 40 20

21 Expression Builder Right click in field cell, choose Build On the Expression Builder, under Expression Elements, open Functions, Built-in Functions, under Expression Categories, choose Program Flow and under Expression Values, choose IIf function populated in the builder at top. 41 Expression Builder On the Expression Builder, select expression in the build area, under Expression Elements, open database, tables, choose table, then from Expression Categories choose rating by double clicking. Modify the expression to read [Employees]![Rating] >

22 Expression Builder Highlight <<truepart>> and insert a second, nested IIf function. Modify the expression to read IIf( [Employees]![Rating] >2.5, IIf( [Employees]![Salary] <50000, «truepart», «falsepart»), «falsepart») 43 Expression Builder IIf( Test [Employees]![Rating] >2.5, Truepart Nested IIf IIf( Test [Employees]![Salary] <50000, Truepart "Raise", Falsepart "Does not meet salary criteria"), Falsepart "Does not meet rating criteria") 44 22

23 Expression Builder 45 Importing Data from Excel and Access 46 23

24 Importing Duty Roster data from Excel Step One To import a data table from an existing Excel, click the External Data tab, choose Excel in the Import and Link group. On the resulting dialog box, use the browse button to drill down to the Excel file you wish to import. Use the Import the source choice to import the Excel file into a new Access table. 47 Importing Duty Roster data from Excel Step Two On the next dialog box, indicate the first row are column headings these will become the field names. Be sure to change all fields to data type Long Integer

25 Importing Duty Roster data from Excel Step Three Set DutyRosterID_PK as the Primary Key Save Import with name DutyRoster and click Finish 49 Import Projects Table from Access With both the SampleDatabase and Projects database open simultaneously, drag the Projects table from Projects database to the SampleDatabase That s it! 50 25

26 Create Relationships between tables Enforce Referential Integrity 51 Queries with more than one table 52 26

27 Create X_Employees_ProjectsAll Add all three tables to the design space. Add fields from each below to design grid Sort on Last Name ascending, then on First Name. No criteria is set in this query. 53 Three tables, four criteria using ANDs and ORs Query returns: Projects where project name is Mercury and the LastName is Duck (projects = Mercury AND last name = Duck ) OR Try it unbalanced to see what happens Projects where project name is Orion and the LastName is Duck (projects = Orion AND last name = Duck ) 54 27

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

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

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

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

More information

Microsoft Access XP (2002) Queries

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

More information

Microsoft Access XP (2002) - Advanced Queries

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

More information

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

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

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

Excel Tables & PivotTables

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

More information

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

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

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

More information

Microsoft 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

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

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

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

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

Word Module 5: Creating and Formatting Tables

Word Module 5: Creating and Formatting Tables Illustrated Microsoft Office 365 and Office 2016 Intermediate 1st Edition Beskeen Test Bank Full Download: http://testbanklive.com/download/illustrated-microsoft-office-365-and-office-2016-intermediate-1st-edition-beskee

More information

Microsoft Office 2016 Mail Merge

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

More information

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

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

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

Table of Contents COURSE OVERVIEW... 5

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

More information

Introduction to Queries

Introduction to Queries Learning Microsoft Access 2007 By Greg Bowden Chapter 3 Introduction to Queries Guided Computer Tutorials www.gct.com.au PUBLISHED BY GUIDED COMPUTER TUTORIALS PO Box 311 Belmont, Victoria, 3216, Australia

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

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

Microsoft Access Basics

Microsoft Access Basics Microsoft Access 2010 Basics March 2011 Files Used in this class: Faculty.accdb (created in class) Optional files for attachment field: Word_Encryption_Security_Tips_1.DOCX StudentinLibrary1.jpg StudentinLibrary2.jpg

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 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

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

Access Intermediate

Access Intermediate Access 2010 - Intermediate (103-134) Building Access Databases Notes Quick Links Building Databases Pages AC52 AC56 AC91 AC93 Building Access Tables Pages AC59 AC67 Field Types Pages AC54 AC56 AC267 AC270

More information

Excel Level 1

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

More information

STIDistrict Query (Basic)

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

More information

IF & VLOOKUP Function

IF & VLOOKUP Function IF & VLOOKUP Function If Function An If function is used to make logical comparisons between values, returning a value of either True or False. The if function will carry out a specific operation, based

More information

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

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design New Perspectives on Access 2016 Module 5: Creating Advanced Queries and Enhancing Table Design 1 Objectives Session 5.1 Review object naming standards Use the Like, In, Not, and & operators in queries

More information

Intermediate Microsoft Access 2010

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

More information

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

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 Description

Microsoft Access Description Go To Page.. Go!! Microsoft Word Microsoft PowerPoint Microsoft Office Main Microsoft Excel Microsoft Publisher Introduction into Microsoft Access Starting Up Microsoft Access Creating New, and Opening

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

Access Objects. Tables Queries Forms Reports Relationships

Access Objects. Tables Queries Forms Reports Relationships Access Review Access Objects Tables Queries Forms Reports Relationships How Access Saves a Database The Save button in Access differs from the Save button in other Windows programs such as Word and Excel.

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

Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK

Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK Full clear download (no formatting errors) at: https://testbankreal.com/download/shelly-cashman-series-microsoft-office-365-access-

More information

Introduction. Inserting and Modifying Tables. Word 2010 Working with Tables. To Insert a Blank Table: Page 1

Introduction. Inserting and Modifying Tables. Word 2010 Working with Tables. To Insert a Blank Table: Page 1 Word 2010 Working with Tables Introduction Page 1 A table is a grid of cells arranged in rows and columns. Tables can be customized and are useful for various tasks such as presenting text information

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

GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition

GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition GO! with Microsoft Access 2010 Introductory Gaskin Mclellan Graviett First Edition Pearson Education Limited Edinburgh Gate Harlow Essex CM20 2JE England and Associated Companies throughout the world Visit

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

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

Advanced Excel. Click Computer if required, then click Browse.

Advanced Excel. Click Computer if required, then click Browse. Advanced Excel 1. Using the Application 1.1. Working with spreadsheets 1.1.1 Open a spreadsheet application. Click the Start button. Select All Programs. Click Microsoft Excel 2013. 1.1.1 Close a spreadsheet

More information

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

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

More information

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

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

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

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

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

More information

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

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

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

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

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

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

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

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

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

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

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

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

Section 1 Creating Mail Merge Files

Section 1 Creating Mail Merge Files Course Topics: I. Creating Mail Merge Files II. Creating Mailing Labels III. Printing Selective Records IV. Using Mail Merge Toolbar V. Envelopes and labels on the fly Section 1 Creating Mail Merge Files

More information

Introduction to Microsoft Excel 2010

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

More information

Microsoft Access 2003 Quick Tutorial

Microsoft Access 2003 Quick Tutorial 1 Starting Access: 1. If there is no Access shortcut on the desktop, select Start, then Programs, then Microsoft Office, and then Access. 2. When access is open select File and then click on Blank Database

More information

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

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

More information

ECDL Module 5 REFERENCE MANUAL

ECDL Module 5 REFERENCE MANUAL ECDL Module 5 REFERENCE MANUAL Databases Microsoft Access XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 5 (USING MICROSOFT ACCESS XP) - MANUAL 5.1 USING THE APPLICATION... 4 5.1.1 DATABASE CONCEPTS...4

More information

SQL Server 2008 Tutorial 3: Database Creation

SQL Server 2008 Tutorial 3: Database Creation SQL Server 2008 Tutorial 3: Database Creation IT 5101 Introduction to Database Systems J.G. Zheng Fall 2011 DDL Action in SQL Server Creating and modifying structures using the graphical interface Table

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

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

EXCEL 2013 FDLRS SUNRISE

EXCEL 2013 FDLRS SUNRISE EXCEL 2013 FDLRS SUNRISE Goal: Participants will create a spreadsheet and graph to document student progress. Objectives: Participants will create a spreadsheet which includes basic formulas. Participants

More information

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

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

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) The purpose of a form is to: A) simplify the entry of data into a table. B) display the

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

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

More information

Microsoft Access 2007 Module 1

Microsoft Access 2007 Module 1 Microsoft Access 007 Module http://citt.hccfl.edu Microsoft Access 007: Module August 007 007 Hillsborough Community College - CITT Faculty Professional Development Hillsborough Community College - CITT

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

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

More information

Basic Microsoft Excel 2011

Basic Microsoft Excel 2011 Basic Microsoft Excel 2011 Table of Contents Starting Excel... 2 Creating a New Workbook... 3 Saving a Workbook... 3 Creating New Worksheets... 3 Renaming a Worksheet... 3 Deleting a Worksheet... 3 Selecting

More information

Links to Activities ACTIVITY 2.1. Links to Activities

Links to Activities ACTIVITY 2.1. Links to Activities ACCESS CREATING TABLES AND RELATIONSHIPS Section 2 0 1 Skills Create a table by adding records Change field names Insert and modify fields in Design view Create a table using Design view Set the primary

More information

Lesson 1: Creating and formatting an Answers analysis

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

More information

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

EXCEL BASICS: MICROSOFT OFFICE 2007

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

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name 1) The table Design view shows 1) A) the relationships established for the table. B) the formatting applied to the table. C) the structure of the table. D) the number of records in the table.

More information

Exploring Microsoft Office Word 2007

Exploring Microsoft Office Word 2007 Exploring Microsoft Office Word 2007 Chapter 3: Enhancing a Document Robert Grauer, Keith Mulbery, Michelle Hulett Objectives Insert a table Format a table Sort and apply formulas to table data Convert

More information

Preview. MS Access Tutorial. Data Files Available on

Preview. MS Access Tutorial. Data Files Available on MS Access Tutorial M Preview After a database has been designed properly it must be implemented and the applications that make the database useful to the end users must be developed. Microsoft Access is

More information