3. Populating the Student Table (data entry) Click the View icon again to switch to the Datasheet View. Enter sample data as follows:

Size: px
Start display at page:

Download "3. Populating the Student Table (data entry) Click the View icon again to switch to the Datasheet View. Enter sample data as follows:"

Transcription

1 1. Getting Started Creating a new, empty database called SCHOOL. a. Insert your removable media. b. Load Access Click Blank Database under Available Templates c. In the right panel, click the Open File icon. In the File New Database dialog box, specify the drive letter for your removable media (see below left), click Ok and then click Create. The default file name for the new database is database1. d. The opening screen of the new database will prompt you to create the first table (below right). Ribbon Navigation Pane Object Window 2. Creating a table in Design View a. Click the View icon on the Ribbon to create the first table in Design View, save the table under the name Student. b. Enter the following field names and data types, set field properties, and set the Primary Key. ID (Primary Key) Last Name First Name Major Units GPA Number (Field Size: Integer) Number (FieldSize: Single; Format: Fixed; Decimal Places: 2) c. Click the icon to save the table definition. 3. Populating the Student Table (data entry) Click the View icon again to switch to the Datasheet View. Enter sample data as follows: Page 1 of 10

2 4. Creating a second table, Major : a. Click the Create tab above the Ribbon, click Table Design, and save the table under the name Major. Major Name (Primary Key) Department GPA Requirement ---- Number (FieldSize: Single, Format: Fixed, Decimal Places: 2) 5. Import tables from one Access database into another database a. Click the File tab and select New. In the right panel, click the Open File icon. In the File New Database dialog box, specify the drive letter for your removable media, name the database SCHOOL, click Ok, and then click Create. b. Click the External Data tab and select Access. A Get External Data dialog box opens (see below left). Use the Browse button to find and open database1 and click Ok. c. An Import Objects dialog box opens (see below right). Click Select All to select both tables you created earlier, and click Ok. After you close the Get External Data dialog box, the two imported tables will appear in the SCHOOL database. 6. Defining relationships between tables a. Click the Database Tools tab, and then click Relationships. Use the Show Table box (below left) to put both tables in the Object Window (below right). Close the Show Table box. b. Select the common field Major Name from the Major table, drag and drop it on field Major Page 2 of 10

3 of the Student table. c. In the Edit Relationships window (below left), check the Enforce Referential Integrity box, and click Create. A line now links the two tables (below right). The 1 and signs indicate that this is a one-to-many relationship (Access automatically detects such relationships). Save the relationship and close the Object Window. d. Referential integrity is a system of rules used to ensure that relationships between records in related tables are valid, and that you don't accidentally delete or change related data. In our example here, if referential integrity is enforced between the Major table and the Student table, Microsoft Access will make sure that every Student record has a valid Major field value that can be found in the Major table. Conversely, no Student record can have a Major field value that does NOT exist in the Major table. To see how these rules work, we will try to make some changes to the data and observe how the system responds: i. Open the Major table and attempt to delete the Marketing major record. You should receive an error message. Can you explain why this happened? ii. Open the Student table and try to change Jose Perez s major to FIN (for Finance). Again, you should receive an error message. Can you explain why this happened? 7. Designing a single-table select query a. Click the Create tab. Click Query Design on the Ribbon. What appears in the Object Window is called Query-By-Example (QBE) window, along with the familiar Show Table dialog box. Add the Student table to the QBE window and close the Show Table box. b. Double click each field name or drag-and-drop it into a desired column. Page 3 of 10

4 c. Query exercise #1: to list all students who have a GPA greater than Enter > 2.5 in the row labeled criteria under the field: GPA (above left). d. To run the query, click the Run icon on the Ribbon. Above right is the output. 8. Defining Calculated Fields (Expressions) a. Calculated fields are used in queries to dynamically obtain results using existing fields. As a general rule, if a field value can be calculated based on other fields, then this value should not be stored permanently in a table (why?). Therefore, a calculated field is not stored in a table. Instead, it is defined in a query. Every time you run the query, values in a calculated field will be recalculated. b. We will insert a calculated field into the query. This new field, called Full Name, will link values from existing fields Last Name and First Name to form a student s full name. If a student has a name change and thereafter we rerun the query, the calculated field will reflect the change. c. In the QBE window, highlight the column for Last Name, click Insert Columns on the Ribbon to add a blank column. d. Put your cursor in the first row (Field:) of the new column. Click the Builder icon on the Ribbon to open the Expression Builder. Enter the following expression in the blank box (see screen shot below left): Full Name: [First Name] & & [Last Name] If your expression includes a field name, that field name must be enclosed by a pair of square brackets []. In our example, both First Name and Last Name are field names, so they are each placed between a pair of []. If your expression includes any text characters (called a string), they must be placed between quotation marks. In our example, we would want a space between the first and last names of each student, hence the space between the quotation marks. e. Click OK to close the Expression Builder. Put a in the Show box under Full Name. Remove the from Last Name and First Name (below right). Now run the query. f. Question: how can we display the query output sorted by students names? g. We will now insert another calculated field into the query. This field, called Total points, will multiply values from existing fields Units and GPA. Again, because such a field is to be calculated dynamically using the most up-to-date values, it should NOT be permanently Page 4 of 10

5 stored in the source table (the Student table in this case). h. In the QBE window, put your cursor in the first row (Field:) of the blank column next to GPA. Open the Exp. Builder and enter the following expression (see screen shot below left): Total Points: [Units] * [GPA] Again, remember that a field name must be enclosed by a pair of []. i. Click OK to close the Exp. Builder. Put a in the Show box under Total Points. Now run the query (below right). j. To change the format of Total Points, switch back to Query Design View and right click the column. Select Properties. In the Field Properties dialog box, set Format to Fixed and Decimal Places to 1. Close the dialog box and rerun the query to verify the result. k. Save the query under the default name, Query1. 9. Calculating simple statistics (Aggregate Queries) a. You can use the Totals ( ) tool to calculate simple statistics such as totals, averages, maximum, minimum, count, etc. Still in the Query1 design view, delete every column except Major, Units, and GPA. b. Click the Totals icon on the Ribbon. A new row, Total:, appears in the QBE window. To calculate average units and GPAs by major, change Group By under Units and GPA to Avg (below left). Change the format of the Units column so that the resulting value will keep one decimal place. Change the format of the GPA column to retain two decimal places. Run the query and you should see the result as shown (below right). c. Note from the result that with this type of query, for each field that you calculate a statistic, a calculated field will replace the original field. In our example, two calculated fields, AvgOfUnits and AvgOfGPA would replace the original fields, Units and GPA. d. Click the Office button at the top left corner, and select Save As => Save Object As. Enter Page 5 of 10

6 Query2 to replace Copy of Query1. Close Query Designing select queries single-field logical operators a. Any query involving more than one select criterion (condition) requires the use of logical operators. In the simplest case, you have two conditions linked by either an and or an or. Cond. A Cond. B A and B Cond. A Cond. B A or B True True? True True? True False? True False? False True? False True? False False? False False? b. Open Query1 in Design View. In MS Access, two conditions entered within the same field must be separated by an and or an or. The screen shots below show two examples. The one on the left specifies a number range between 75 and 90 inclusive. The one on the right specifies two number ranges, either < 75 or > 90. Note that you could also use the key word, Not, to express the same condition. For example, Not (> = 75 and < = 90) is equivalent to < 75 or > 90. c. What would we get if we entered < 75 and > 90? d. What would we get if we entered > 75 or < 90? 11. Designing select queries multi-field logical operators a. In MS Access, if your select criteria involve several fields, WHERE each criterion is located (i.e., same rows or different rows) determine the type of operator intended. b. If two conditions are each entered under a separate field but in the same row, the intended logical operator is an and (see below left). c. If two conditions are each entered under a separate field but in different rows, the intended logical operator is an or (see below right). d. Save and close Query1. Page 6 of 10

7 12. Designing a multi-table select query (Inner-join Operation) a. Click the Create tab and then Query Design on the Ribbon. b. At the Show Table dialog box, add both Student and Major tables. Close the dialog box. c. Enter the following fields into the first row of the QBE window: Last Name, First Name, Major Name (from Major Table), GPA, and GPA Requirement. d. Specify a select criterion so the output will list those who have a current GPA below their major s GPA requirement (see below left). e. Run the query (see below right). f. Delete the criterion under GPA Requirement. Save the query as Students by Major. An example of crossfield comparison 13. Design a Report a. We have very little control over the format and layout of a query output, but we can use Reports to custom-design an output document to fit our needs. However, it is always a good idea to use a query to gather all the information needed, and then use the query as the data source for the report (we will use the query, Students by Major, that we created earlier). b. Click the Create tab and then click Report Wizard on the Ribbon. c. In the Report Wizard dialog box, under Tables/Queries, select Query: Students by Major as source of data, then click the button to include all the fields in the report (below left). d. Click Next. Click Major in the left panel. This allows the Wizard to follow the established relationship to group student records under each major. Click Next twice. e. Click the button, Summary Options, to calculate any summary statistics needed (below right). f. In the Summary Options dialog box, check the Avg box to calculate the average GPA for each major (below left). Does it make sense to calculate the sum of all GPAs? Page 7 of 10

8 g. Click Next twice. Enter List of Students by Major as a title for the report. Click Finish to preview the report (below right). h. You may now switch to the Design View to make other format/layout adjustments (Select Close Print Preview = > View = > Design View). 14. Designing a Macro a. Macros are tiny programs that can be executed independently to perform a series of specific tasks. b. Click the Create tab and then click Macros on the Ribbon. We specify what the macro does by creating a list of actions. When the macro is executed, the actions on the list will be carried out sequentially. An example (see below left): 1. Click the dropdown list next to Add New Action. Select DisplayHourglassPointer. This action can have an argument of either Yes or No. Setting it to Yes will turn the mouse pointer (an arrow) into an hourglass. 2. For the next action, select OpenReport. For action arguments, select List of Students by Major for Report Name, and Report for View. 3. For the next action, select OpenQuery. For action arguments, select Query1 for Query Name. 4. For the last action, Select DisplayHourglassPointer, but this time set action arguments to No. This action will restore the mouse pointer back to an arrow. c. Save the macro under the name Macro1. Close the Object Window. Right click the macro and select Run. Observe what happens. Close both the report and the query opened by the macro. d. If a macro is named AutoExec, it will run automatically every time the database containing the macro is opened. Right click to rename Macro1 to AutoExec (below right). Close your database and then reopen it. The AutoExec macro allows you to launch many actions at the start of your database application. Page 8 of 10

9 15. Designing a Form a. We use forms primarily for entering new data or updating existing data. A form is often designed to look like its paper version. This makes data entry using a source document (paper) more efficient and accurate. b. In this exercise, we will create a form that contains another form (Main/subform) using data from the two tables, Major and Student. c. Click the Create tab and select More Form Design => Form Wizard on the Ribbon. d. In the Form Wizard dialog box, select Table: Major under Tables/Queries. Click the button to include all the fields from the Major table. These fields will be on the Main Form (see above left). e. Under Tables/Queries, select Table: Student as the data source for the Subform. Click the button several times to include the following fields in the Subform: ID, Last Name, First Name, Units, and GPA (see above right). Do not include the field Major (why?). f. Click Next then Finish to view the draft version of this form. g. Switch to Design View. We will modify the form title and make other layout/format adjustments. (see below left). h. Switch back to the Form View to see the effect of the changes we made (below right). i. Save the form. In the Navigation Pane, note that Access has saved the Main form and the Subform separately under the names, Major and Student Subform, respectively. 16. Designing a custom menu (on a blank form) We can use a form to create a custom-designed menu that controls all of our database application activities (Access calls it a switchboard). We start with a blank form. We then add various control objects (primarily command buttons) onto the form. Each command button will be Page 9 of 10

10 associated with an action, such as opening a query or a form, running a macro, etc. Therefore, before we create such a form, we should have everything else ready (e.g., queries, forms, reports, macros, etc.). a. Click the Create tab and select Blank Form on the Ribbon. Switch to Design View. b. Adjust the blank form to desired size (3 6, for example), background color, etc. c. Use the label object Aa on the Ribbon to create a form title, Main Menu (below left). d. Click the Button (Form Control) icon on the Ribbon and then click any place in the form to open the Command Button Wizard dialog box (see below right). Actions to be associated with the button is organized by categories. e. Select Form Operations under Categories. Select Open From under Actions. Click Next. f. Select Major on the next screen (the button, when clicked, will open the Major main form we created earlier. Click Next twice. Select the radio button next to and change the default text to Open Students by Major Form (see below left). Click Finish. g. Use the same method to add two more command buttons to the form. One button is labeled Preview List of Students, and it will, when clicked, open the List of Students by Major report in print preview mode. The other button is labeled Close, and it will close the menu form when clicked (see below right). h. Save the form under the name, Main Menu. Switch to Form View to test all three buttons. j. We will now modify the AutoExec macro so it will open the Main Menu every time we open the SCHOOL database. Open the macro in Design View. Delete all the existing actions. Enter OpenForm as the new action, and select Main Menu as the Action Arguments. Save the macro. k. Close the database and then reopen it to test our work. Page 10 of 10

Microsoft Access Basics

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

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

MICROSOFT ACCESS A. CREATING A DATABASE B. CREATING TABLES IN A DATABASE

MICROSOFT ACCESS A. CREATING A DATABASE B. CREATING TABLES IN A DATABASE Prepared for MIS 6326 by Dr. Sumit Sarkar 1 MICROSOFT ACCESS A database is a collection of different types of data, stored in a manner to facilitate use in diverse ways. In Microsoft Access 2000, a database

More information

Introduction to Microsoft Access 2003

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

More information

User Services. Microsoft Access 2003 II. Use the new Microsoft

User Services. Microsoft Access 2003 II. Use the new Microsoft User Services July 2007 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a

More information

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Personalizing your Access Database with a Switchboard

Personalizing your Access Database with a Switchboard Personalizing your Access Database with a Switchboard This document provides basic techniques for creating a switchboard in Microsoft Access. A switchboard provides database users with a customized way

More information

Access 2007 Creating Forms Table of Contents

Access 2007 Creating Forms Table of Contents Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4

More information

Check out our website!

Check out our website! Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:

More information

Microsoft Access 2007 Advanced Queries

Microsoft Access 2007 Advanced Queries Microsoft Access 2007 Advanced Queries When you run a query in Microsoft Access 2007, it is not only able to display records, but also able to perform specific tasks and actions based on user defined criteria.

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

Planning and Creating a Custom Database

Planning and Creating a Custom Database Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined

More information

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 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

More information

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

More information

A Basic introduction to Microsoft Access

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

More information

Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007

Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007 David M. Kroenke and David J. Auer Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007 Prepared by David J. Auer Western Washington University Page D-1 Microsoft product

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 1 Creating a Database Microsoft Office 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Microsoft Access 2007 Module 1

Microsoft Access 2007 Module 1 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

Introduction to Microsoft Access 2007

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

More information

Access Part 2 - Design

Access Part 2 - Design Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Microsoft Access 2007 Introduction

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

More information

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0 ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended

More information

Microsoft Access 2010- Introduction

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

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS

MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS MICROSOFT OUTLOOK 2010 WORK WITH CONTACTS Last Edited: 2012-07-09 1 Access to Outlook contacts area... 4 Manage Outlook contacts view... 5 Change the view of Contacts area... 5 Business Cards view... 6

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

MICROSOFT ACCESS 2007 BOOK 2

MICROSOFT ACCESS 2007 BOOK 2 MICROSOFT ACCESS 2007 BOOK 2 4.1 INTRODUCTION TO ACCESS FIRST ENCOUNTER WITH ACCESS 2007 P 205 Access is activated by means of Start, Programs, Microsoft Access or clicking on the icon. The window opened

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Reduced Quality Sample

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

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

Microsoft Access 2010 Overview of Basics

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

More information

MICROSOFT ACCESS TABLES

MICROSOFT ACCESS TABLES MICROSOFT ACCESS TABLES Create a New Table... 1 Design View... Datasheet View... 5 Table Tools in Datasheet View... 6 Sorting and Filtering Data... 8 Import and Export Data... 10 Relationships... 11 Relationship

More information

Creating tables in Microsoft Access 2007

Creating tables in Microsoft Access 2007 Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using

More information

Tutorial 3 Maintaining and Querying a Database

Tutorial 3 Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2013 Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the Query window in

More information

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2013 Enhanced Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the

More information

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate.

Microsoft Access Rollup Procedure for Microsoft Office 2007. 2. Click on Blank Database and name it something appropriate. Microsoft Access Rollup Procedure for Microsoft Office 2007 Note: You will need tax form information in an existing Excel spreadsheet prior to beginning this tutorial. 1. Start Microsoft access 2007. 2.

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

More information

ACCESS 2007 BASICS. Best Practices in MS Access. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007 BASICS. Best Practices in MS Access. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 BASICS Best Practices in MS Access IT Training & Development (818) 677-1700 Email: training@csun.edu Website: www.csun.edu/it/training Access

More information

Getting Started with Access 2007

Getting Started with Access 2007 Getting Started with Access 2007 1 A database is an organized collection of information about a subject. Examples of databases include an address book, the telephone book, or a filing cabinet full of documents

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

MS Access. Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed.

MS Access. Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed. MS Access Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed. Organize data into manageable related units Enter, modify and locate

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

More information

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

More information

Access is an extremely complex subject and, inevitably, shortcuts and compromises have been made to reduce the written content of this article.

Access is an extremely complex subject and, inevitably, shortcuts and compromises have been made to reduce the written content of this article. EMISNUG Conference 2012: Building an Access database Patrick Wilmore, IT Manager, Windrush Medical practice, Witney This handout accompanies my talk at 10.00am on Friday 8 th September 2012. The objective

More information

MICROSOFT ACCESS 97 FOR DEVELOPERS ADVANCED MODULE 1 MACROS

MICROSOFT ACCESS 97 FOR DEVELOPERS ADVANCED MODULE 1 MACROS MICROSOFT ACCESS 97 FOR DEVELOPERS ADVANCED MODULE 1 MACROS NOTES TABLE OF CONTENTS SECTION 1 CREATING MACROS... 1 WORKING WITH MACROS... 3 Opening the Macro Design Window... 3 CREATING A MACRO... 4 Assigning

More information

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N).

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N). Lab 3 Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Relational Queries Creating a query can be a little different when there is more than one table involved. First of all, if you want to create a query that makes use of more than

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Forms Although information in a database can be entered and edited directly in a table, most people find it simpler to use a form. We use forms all the time in everyday life as a

More information

Access Tutorial 1 Creating a Database

Access Tutorial 1 Creating a Database Access Tutorial 1 Creating a Database Microsoft Office 2013 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create

More information

Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS...

Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS... Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS... 3 CHANGE A JOIN PROPERTY... 4 REMOVING A JOIN... 4 CREATE QUERIES... 4 THE

More information

Advanced Database Concepts Using Microsoft Access

Advanced Database Concepts Using Microsoft Access Advanced Database Concepts Using Microsoft Access lab 10 Objectives: Upon successful completion of Lab 10, you will be able to Understand database terminology, including database, table, record, field,

More information

Microsoft PowerPoint 2010 Handout

Microsoft PowerPoint 2010 Handout Microsoft PowerPoint 2010 Handout PowerPoint is a presentation software program that is part of the Microsoft Office package. This program helps you to enhance your oral presentation and keep the audience

More information

Microsoft Access Part I (Database Design Basics) ShortCourse Handout

Microsoft Access Part I (Database Design Basics) ShortCourse Handout Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences

More information

Microsoft Access 2010

Microsoft Access 2010 IT Training Microsoft Access 2010 Jane Barrett, IT Training & Engagement Team Information System Services Version 3.0 Scope Learning outcomes Learn how to navigate around Access. Learn how to design and

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

EMAIL QUICK START GUIDE

EMAIL QUICK START GUIDE IT Services Microsoft Outlook 2010 EMAIL QUICK START GUIDE Contents What is Outlook?...2 Quick Guide to Email...2 Create a new e-mail message...2 Forward or reply to an e-mail message...2 Creating new

More information

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Access Queries (Office 2003)

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

More information

Creating Calculated Fields in Access Queries and Reports

Creating Calculated Fields in Access Queries and Reports Creating Calculated Fields in Access Queries and Reports Access 2000 has a tool called the Expression Builder that makes it relatively easy to create new fields that calculate other existing numeric fields

More information

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual Lab Manual Databases Microsoft Access 1 Table of Contents Lab 1: Introduction to Microsoft Access... 3 Getting started... 3 Tables... 3 Primary Keys... 6 Field Properties... 7 Validation Rules... 11 Input

More information

Avery Wizard: Using the wizard with Microsoft Word. This is a simple step-by-step guide showing how to use the Avery wizard in word

Avery Wizard: Using the wizard with Microsoft Word. This is a simple step-by-step guide showing how to use the Avery wizard in word Avery Wizard: Using the wizard with Microsoft Word This is a simple step-by-step guide showing how to use the Avery wizard in word Open up a blank document in Microsoft Word and click the Avery Tab at

More information

PowerPoint 2013: Basic Skills

PowerPoint 2013: Basic Skills PowerPoint 2013: Basic Skills Information Technology September 1, 2014 1 P a g e Getting Started There are a variety of ways to start using PowerPoint software. You can click on a shortcut on your desktop

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

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

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

More information

IST 195 Lab 11: MS Access

IST 195 Lab 11: MS Access Title of lab: Microsoft Access 2010 IST 195 Lab 11: MS Access Learning goal: Databases are collections of information, and database programs are designed to maintain data in structured tables. In this

More information

Creating a Database using Access 2007

Creating a Database using Access 2007 Creating a Database using Access 2007 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left corner of the screen,

More information

Access 2010 Intermediate Skills

Access 2010 Intermediate Skills Access 2010 Intermediate Skills (C) 2013, BJC HealthCare (St Louis, Missouri). All Rights Reserved. Revised June 5, 2013. TABLE OF CONTENTS OBJECTIVES... 3 UNDERSTANDING RELATIONSHIPS... 4 WHAT IS A RELATIONSHIP?...

More information

Merging Labels, Letters, and Envelopes Word 2013

Merging Labels, Letters, and Envelopes Word 2013 Merging Labels, Letters, and Envelopes Word 2013 Merging... 1 Types of Merges... 1 The Merging Process... 2 Labels - A Page of the Same... 2 Labels - A Blank Page... 3 Creating Custom Labels... 3 Merged

More information

IN THIS PROJECT, YOU LEARN HOW TO

IN THIS PROJECT, YOU LEARN HOW TO UNIT 2 PROJECT 11 CREATING A CUSTOMIZED DATABASE IN THIS PROJECT, YOU LEARN HOW TO Examine a Database and Its Objects Create Tables and Set Field Properties in Design View Create Relationships Add and

More information

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior. Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,

More information

Training Needs Analysis

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

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

More information

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER

8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8 CREATING FORM WITH FORM WIZARD AND FORM DESIGNER 8.1 INTRODUCTION Forms are very powerful tool embedded in almost all the Database Management System. It provides the basic means for inputting data for

More information

How to Create Your Own Crystal Report

How to Create Your Own Crystal Report How to Create Your Own Crystal Report Step 1 Figure out what table you need to use for your report. Click on Resources, then File Layouts and Program Information. Click on File Layouts to see the available

More information

Microsoft Access 2010 An Intermediate Guide (Level 2)

Microsoft Access 2010 An Intermediate Guide (Level 2) IT Training Microsoft Access 2010 An Intermediate Guide (Level 2) Contents Introduction...1 Speeding up Table Creation...2 Using Datasheet View...2 Using a Table Template...3 Input Masks...3 Importing

More information

What is Microsoft Excel?

What is Microsoft Excel? What is Microsoft Excel? Microsoft Excel is a member of the spreadsheet family of software. Spreadsheets allow you to keep track of data, create charts based from data, and perform complex calculations.

More information

Introduction to Word 2007

Introduction to Word 2007 Introduction to Word 2007 You will notice some obvious changes immediately after starting Word 2007. For starters, the top bar has a completely new look, consisting of new features, buttons and naming

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports Introduction...2 Tables...3 Designing a Table...3 Data Types...4 Relationships...8 Saving Object Designs and Saving Data...9 Queries...11

More information

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features

More information

Microsoft Access 2013 An Intermediate Guide (Level 2)

Microsoft Access 2013 An Intermediate Guide (Level 2) IT Training Microsoft Access 2013 An Intermediate Guide (Level 2) Contents Introduction...1 Speeding up Table Creation...2 Using a Table Template...2 Using Datasheet View...2 Input Masks...3 Importing

More information

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11

MS Excel. Handout: Level 2. elearning Department. Copyright 2016 CMS e-learning Department. All Rights Reserved. Page 1 of 11 MS Excel Handout: Level 2 elearning Department 2016 Page 1 of 11 Contents Excel Environment:... 3 To create a new blank workbook:...3 To insert text:...4 Cell addresses:...4 To save the workbook:... 5

More information