Microsoft Access 2007 Module 1

Size: px
Start display at page:

Download "Microsoft Access 2007 Module 1"

Transcription

1 Microsoft Access 007 Module

2

3 Microsoft Access 007: Module August Hillsborough Community College - Professional Development and Web Services

4 Hillsborough Community College - Professional Development and Web Services The material contained in this training material is copyrighted 007 Hillsborough Community College Department of Professional Development and Web Services and may not be reproduced without express, written permission. Other trademarks, trade names, logos, designs, brand names, and product services mentioned in this publication may be trademarks or registered trademarks of third parties.

5 Microsoft Access Module I Table of Contents Objectives Database Structure Database Terminology Relationships One-to-many Many-to-many One-to-one Create a New Database Access 007 Tour and Features Create a Table in Datasheet View Edit a Table in Design View Save a Table Enter Data Data Types Use Input Mask Wizard Data Type: Yes/No Data Type: Lookup Wizard Insert and Delete Fields Set a Primary Key Form Wizard Split Form i

6

7 Microsoft Access Module I Objectives At the end of this training session you should be able to: Understand the three types of relationships: one-to-many, many-tomany and one-to-one; Create a new database; Create tables for data entry in datasheet view and design view; Enter data into a table; Use, understand, and set data types: text, memo, number, currency, date/time, autonumber, yes/no, lookup wizard; Insert and delete a field; 7. Create and delete a primary key; 9. Create a form using the Wizard tool; 0. Create a split form.

8 Hillsborough Community College - Professional Development and Web Services

9 Microsoft Access Module I Before a database is developed, plan the structure from the beginning to the end. Flowcharting or blueprinting in advance will eliminate restructuring and/or starting from scratch. Questions to Ask Before Designing a Database:. What does the database need to do?. What functions need to be achieved?. Which objects (such as tables, forms) depend on each other? 4. What items are needed for the database? 5. Who will use the database? 6. How will the output data (report) be generated? 7. How will the database be organized? Access Database Terminology It is necessary to understand and be familiar with the basics of a database and its objects to create or generate information. Table- The central framework of a database that stores data in fields (columns) and records (rows). Query- Allows for table inquiries. A query can change, delete, add, arrange data in tables. Also aids gathering information for forms and reports. Form- Displays and enters data in a fitted format. Forms can also contain other nested forms (subforms). Report- Allows for the printing and print preview of information such as labels, lists, form letters, invoices, summaries, display charts, etc. The user can personalize reports by adding a logo or picture, organizing headers, details, footers, and sorting columns. Page- Also known as Data Access Page. Allows the publication of a web page and web access to a database. A page can be viewed and edited. Macro- Allows for automating simple and common tasks such as opening and closing a form, exporting data, printing data in a report, and saving data.

10 Hillsborough Community College - Professional Development and Web Services When organizing and creating a database, the question, "How will the objects (tables) relate?" must be asked. There are three types of relationships in Microsoft Access: One-to-many Many-to-many One-to-one Table One-to-many relationship The most common type of relationship. A record from one table (Table ) can have matching records in another table (Table ); however, Table has only one matching record in Table. Let's look at the example.. One Department Table. has more than one Course,. yet each Course has one Department. Many-to-many relationship Not recommended due to problems enforcing referential integrity. A record from one table (Table ) can have many matching records in another table (Table ). Also, a record in Table can have many matching records in Table. This is possible through the use of a third table called a junction table. The junction table has a primary key that consists of two fields from Tables and. Table Let's look at the example.. Primary key from Inventory Details table (tblinventdetails). Primary key from the equipment table (tblequipment). One department can have several types of equipment, 4. And each type of equipment can appear in several departments. 4 Table Junction Table

11 Microsoft Access Module I One-to-one relationship Least common type of relationship. However, a one-to-one relationship is useful if there are records that must be kept confidential and secure. A record from one table (Table ) can have one single matching record in another table (Table ), and Table can have only one single matching record in Table. Let's look at the example.. All students have one matching record in the student table (tblstudents).. The values are a subset of the social security field and the student table (tblstudents).

12 Hillsborough Community College - Professional Development and Web Services Create a New Database Before creating tables and forms, creating a general database is recommended.. Open Access 007. Go to Start > All Programs > Microsoft Office > Microsoft Office Access 007. You have the option to: A. Open a Microsoft template B. Open a recent database C. Open a Blank Database. For this exercise, we will choose this option.. Type the file name of the database. e.g. HCC_Employee_Data 4. Click Create. C A B 4

13 Microsoft Access Module I Access 007 Tour and Features The top of the screen has been rearranged in Access 007. Instead of concealed toolbars and commands, you have one control center, called the Ribbon. The Ribbon area includes Office Button, the Quick Access Toolbar, tabs, groups and commands. Ribbon Area 4. Select the Office Button to access most of what used to be under the File menu, such as Open, Save and Print.. The Quick Access Toolbar includes buttons to Save, Undo and Redo. You can customize this toolbar by adding your favorite commands. Just click the down arrow to the right of the Redo button.. Tabs include Home, Create, External Data, Database Tools and Datasheet. Tabs, such as Table Tools will appear when you are working on a related task. 4. Groups include related commands. For example, the Font group includes the buttons for font type, font size, font color, alignment, etc. 5. Commands are the actual task buttons, such as Bold, Underline, Italicize, etc. 5 Examples of New Features. Database Templates. Split Form. Enhanced Datasheet View 4. Memo fields support rich text 5. Attachment data type 7

14 Hillsborough Community College - Professional Development and Web Services Create a Table In Datasheet View Creating a table in Datasheet View gives you access to the field names (data headings), data types and the actual data.. When you first open a Blank Database, a new table is created for you. To create one yourself, go to the Create tab. Under the Tables group, select Table.. The default view for a new table is Datasheet view. The first field (column) is automatically named ID, the data type is AutoNumber and it is the assigned Primary Key. You can delete or edit this field, if your table does not need an ID field. For now, let s leave it there. We will use it later.. Double click on Add New Field and type in the new field name of LastName. When entering field names, do not use spaces or punctuation. 4. Type in Smith, in the first row under the new heading of LastName. 5. The Data Type is set to Text. If you had typed in numbers, the data type would have been Number. 5 4 If you need to change data types, click on the down arrow in the box next to Data Type to make your selection. Go to the Data Type section in this booklet for descriptions or hit F on your keyboard for more details and help on data types. Primary keys are not required; however, they are needed to create relationships between tables in a database. Primary keys cannot be duplicated; therefore, never use a last name, address, or a field where information is likely to be repeated. Ideal primary keys are employee numbers, social security numbers, product numbers, etc.

15 Microsoft Access Module I Edit a Table In Design View Creating or editing a table in Design View gives you freedom to construct a table with specifications for data collection. You do not type in the actual data in this screen. You are setting up the table structure - field names, data types, field size, data validation, etc.. The default view for a new table is Datasheet view. In the Home tab>views group, select the Design View button to switch to Design View.. If prompted, save your table as tblemployeeinfo.. To add or edit fields, type in the Field Name column. When entering field names, do not use spaces or punctuation. 4. Under Data Type, click on the down arrow and select an appropriate data type. Go to the Data Type section in this booklet for descriptions or hit F on your keyboard for more details and help on data types. 5. You can set more specific settings for your data types in Design View. For example, locate the General tab and type 0 for the Field Size of LastName. Typing in 0 for the field size indicates that the last name can be no more than 0 characters long. 6. Type a label for the Caption. e.g. Last Name: Activity Spaces and punctuation can be used for captions. Whatever is typed in the caption will appear in both forms and reports. If no caption is entered, the field name will appear instead. Add the following fields to the table, FirstName, MI (middle initial), Street, City, State, Zip, Exempt, Phone and Campus. Also add the Field Size and Caption for each field name.

16 Hillsborough Community College - Professional Development and Web Services Save a Table Saving a table with a specific title will help when organizing information, creating queries, forms, and pages, and connecting to other tables.. To save the current table, click the Save button in the Quick Access Toolbar.. You can also get to a Save button through the Office Button.. You can use Save As, from the Office Button to rename the database, save a copy or to save it in another format, such as in a previous version. 0

17 Microsoft Access Module I Enter Data into a Table Once a table has been created, data can be entered.. If your new table is not open, double click on its title, in the Navigation Pane.. In the Home tab>views group, select Datasheet View.. Under FirstName, type in new data. e.g. Sue 4. Type in data for MI, Street, City and State. 5. Click Save. 4 Activity Create a new table, tblcampus. Add one field to the table, Campus. Open the table and add the data, BR, DAO, DM, MacDill, PC, SPC, YB.

18 Hillsborough Community College - Professional Development and Web Services Data Types It is important to assign appropriate data types to a field since they specify what type of data can be entered into a field. Data Type Text Memo Number Currency Date/Time AutoNumber Yes/No OLE Object Hyperlink Lookup Wizard Attachment Description Can contain any entries that do not require calculations such as addresses, social security numbers, dates, and phone numbers. Maximum number of characters, including spaces, is 55 characters. Long text or number entries. Use when more than 55 characters are necessary. Can contain only numbers. Can be positive or negative. Used for calculations. Can contain only monetary data. Can be used in calculations. Add date and time. 8 character default. Use when sequential, random, or replication ID numbers are needed. Use when Yes/No, True/False, or On/Off are necessary. Add objects such as Excel workbooks or Word documents that are linked or embedded. Link to files, objects or web links. Use when choosing data such as tables or a list of values. Can contain an attached file, such as images or documents.

19 Microsoft Access Module I Use Input Mask Wizard The Input Mask Wizard allows the designer to define the format for entering data. In this example, a format is set for entering a zip code. To use the input mask wizard the table must be in Design View.. If you don t have the Zip field yet, type Zip under the Field Name column.. Select Text for Data Type.. Type Zip: for the Caption. 4. Click in the field property for Input Mask. 5. Click on the build button. The Input Mask Wizard appears Select Zip Code and click on Next. 7. You can alter the mask and select a placeholder, if you would like. When your changes are complete, click on Next. The underscore _ is the default placeholder character. 8. Click on the With the symbols in mask radio button Click Next and Finish. Notice that the mask is added under Field Properties>Input Mask. 0. Now all entries in the zip code field will have to follow this format. Go to the Datasheet View to test out the mask. 7 8

20 Hillsborough Community College - Professional Development and Web Services Data Type: Yes/No Data types are used to specify what type of data can be entered and stored into a field. In this example, the Yes/No data type is used for Exempt. Using the Yes/No format is helpful for simple, clear-cut answers. You can edit data types in either Datasheet View or Design View. We ll use Design View.. If necessary, enter the Exempt field under the Field Name column.. Under Data Type, click on the down arrow and select Yes/No. Go to the Datasheet View. Yes is represented by a check and No is not checked in the Datasheet View.. Select Yes, if you are prompted to save the table. 4. Select Yes, if you are prompted that you may lose data due to the data type change. 5. Test and view the yes/no format in the Exempt field. 4 Yes/No also represents the following: True/ False, /0, and On/Off. 5 4

21 Microsoft Access Module I Data Type: Lookup Wizard The purpose of the Lookup Wizard is to connect one field from one table to another table or a list of values. Using the Lookup Wizard is useful when choices need to be limited. For instance, Hillsborough Community College has the campus location of District Administrative Offices. If members of the HCC community were to type District Administrative Offices in a table, they could type GK, DAO, District Administrative Offices or some other spelling/misspelling. Therefore, restricting the location to DAO ensures the same information is entered. In this example, a drop-down menu is created by using the Lookup Wizard, which will connect to tblcampus. To use the Lookup Wizard the table must be in Design View.. If necessary, type in the Field Name. e.g. Campus. Under Data Type, click on the down arrow and select Lookup Wizard.. A Lookup Wizard dialog box appears. Click on the I want the lookup column... radio button. 4. Click on Next. 5. Select the table for the lookup. e.g. Table: tblcampus 6. Click on Next

22 Hillsborough Community College - Professional Development and Web Services 7. Select the available field(s) to include by selecting the field(s) and clicking on the singleheaded next arrow. e.g. Campus 8. Click on Next. 9. Set sort order as needed and click on Next. e.g. Campus, Ascending 0. Select Hide key column and click on Next.. After entering the label name for the lookup column, click on Finish. e.g. Campus. Click Yes to save table and create relationships. 7 8 To view the down-drop menu for the different campuses, click on the Datasheet View button. 9 To manually add a drop down menu, select Lookup Wizard... as the Data Type. Select I will type in the values I want and follow the wizard. 0 Activity Use the Lookup Wizard to connect the field name State to a table called tblstate or manually add a lookup for State. You do not need to include every state. 6

23 Microsoft Access Module I Insert and Delete Fields After a table is created, additional field names may to be added or deleted. In this example, we are adding an EmployeeID (employee number) field. To insert a field into the table, go to Design View.. Click on the row below where the field is to appear. In this example, click on the field name LastName.. In the TableTools/Design tab>tools group, click on Insert Rows.. Type in the Field Name and Data Type e.g. Field Name: EmployeeID Data Type: Text Field Size: 7 Caption: Employee ID: The data type is set to Text because this data doesn t require any calculation. 4. To delete a field name, select the row and press the Delete Rows button in the Tools group of the Design tab. 5. Go to Datasheet View and enter in a unique EmployeeID for each employee. In Datasheet View, the Insert command is on the Datasheet tab, in the Fields & Columns group. 5 4 Activity. Insert a field of your choice. Choose an appropriate Data Type. Enter the Caption for your new field.. Delete the Phone field. 7

24 Hillsborough Community College - Professional Development and Web Services Set a Primary Key Primary keys uniquely identify each record in a table. An advantage of a primary key is that it does not allow duplication of information. Access does not require a primary key and multiple primary keys can be set. Select a primary key when you need to create relationships between tables in a database. Primary key data cannot be duplicated; therefore, never use a last name, address, or a field where information is likely to be repeated. Ideal primary keys are employee numbers, social security numbers, product numbers, etc. In this example, a primary key is set for the Field Name: EmployeeID. 4 To set a primary key, the table must be in Design View.. Click on the row selector for the field to be set as a primary key. e.g. EmployeeID.. Select the Design tab.. Press the Primary Key button. 4. If the there is more than one primary key, press and hold down the Ctrl key, and click on the row selector for other fields. With the appropriate rows selected, press the Primary Key button. e.g. EmployeeID and ID. Ideal primary keys are employee numbers, social security numbers, product numbers, etc. 8

25 Microsoft Access Module I Create a Form: Form Wizard The Form Wizard is simple and easy to use. A form is used to simply display and enter data in a fitted format. Forms in Access are created from tables and/or queries. Forms can also contain subforms (nested tables). Personalize forms in Design View or Layout View by adding a picture, header or footer. Switch between views on the Form Layout Tools/Format tab.. In the Create tab>forms group, select More Forms>Form Wizard.. Select the table or query for report, for example, tblemployeeinfo.. Add Available Fields to Selected Fields and click on Next. In this example, add all available fields by clicking on the double arrow. 4. Choose a layout and click Next. In this example, the Columnar layout is chosen. 4 9

26 Hillsborough Community College - Professional Development and Web Services 5. Select the form style and click on Next, for example, Access Give the form a title, for example, frmemployeeinfo. 7. Choose whether to Open the form to view or enter information or Modify the form's design, for example, Open the form to view or enter information. 8. Click Finish. 9. The employee information form now appears. In this example, a form was created using the table tblemployeeinfo. When information is added or changed through the form, the table tblemployeeinfo is automatically updated

27 Microsoft Access Module I Create a Form: Split Form With some tasks, it may be helpful to view the form and the datasheet simultaneously.. In the All Access Objects pane, select the object that you would like to use for creating the form. For example, select tblemployeeinfo.. Under the Create tab>forms group, select Split Form.. You can now see a form and datasheet based on tblemployeeinfo. Data can be added, edited and deleted from the new split form. Activity Create a new database and form with fields of your choice. Use a variety of data types, such as text, number, yes/no, date/time, currency and lookup.

28 Hillsborough Community College - Professional Development and Web Services

Microsoft Access 2003 Module 1

Microsoft Access 2003 Module 1 Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional

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

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

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

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

Using Microsoft Access Databases

Using Microsoft Access Databases Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database

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

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

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

Access 2007. Creating Databases - Fundamentals

Access 2007. Creating Databases - Fundamentals Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view

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

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

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

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

To determine the fields in a table decide what you need to know about the subject. Here are a few tips:

To determine the fields in a table decide what you need to know about the subject. Here are a few tips: Access Introduction Microsoft Access is a relational database software product that you can use to organize your data. What is a "database"? A database is an integrated collection of data that shares some

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

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

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

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

Chapter 5. Microsoft Access

Chapter 5. Microsoft Access Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,

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

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options The Home Ribbon Sort Buttons: sort records into ascending or descending order by selected field Filter by Selection button. Displays records by degree to which they match the selected record. Display summary

More information

What is a database? The parts of an Access database

What is a database? The parts of an Access database What is a database? Any database is a tool to organize and store pieces of information. A Rolodex is a database. So is a phone book. The main goals of a database designer are to: 1. Make sure the data

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

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

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1 - Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu

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 I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit

More information

Microsoft Access Glossary of Terms

Microsoft Access Glossary of Terms Microsoft Access Glossary of Terms A Free Document From www.chimpytech.com COPYRIGHT NOTICE This document is copyright chimpytech.com. Please feel free to distribute and give away this document to your

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

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

MICROSOFT OFFICE ACCESS 2007 - LEVEL 2

MICROSOFT OFFICE ACCESS 2007 - LEVEL 2 MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - LEVEL 2 Modifying Tables Setting Field Properties Using Operators in Queries Designing Advanced Queries Creating Action Queries Using Advanced Query

More information

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training MS Access 2010 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training materials

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

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

If the database that is required is similar to a template then whole database can be generated by using a template that already exists.

If the database that is required is similar to a template then whole database can be generated by using a template that already exists. Creating Tables There are many ways of creating tables; it depends on the fields required in the table and the complexity of the database to be set up as to how you create the tables. If the database that

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

Information Technology Services Kennesaw State University

Information Technology Services Kennesaw State University Information Technology Services Kennesaw State University Microsoft Access 2007 Level 1 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied

More information

Databases and Microsoft Access II

Databases and Microsoft Access II Databases and Microsoft Access II Northern New York Library Network Workshop Jim Crowley C3 - Crowley Computer Consulting 9148 State Highway 37 Ogdensburg NY 13669 315-394-7008 fax 315-394-7009 www.crowleycomputers.com

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

Access 2007 Essentials

Access 2007 Essentials Access 2007 Essentials Sample Corporate Training Materials All of our training products are fully customizable and are perfect for one day and half day workshops. You can easily update or insert your own

More information

Course Title: Microsoft Access 2007- Basic Duration: 12 hours

Course Title: Microsoft Access 2007- Basic Duration: 12 hours Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic

More information

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View D) All Of Above 2. Which Of The Following Creates A Drop Down List Of Values To Choose

More information

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet

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

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013 c 2015 by David W. Gerbing School of Business Administration Portland State University July 2, 2015 CONTENTS 1 Contents 1 Create a New Database 1 2

More information

Microsoft Access 2000 for Windows Handout: 3 Academic Computing Support Information Technology Services Tennessee Technological University December 2001 1. Creating a new database In this exercise, we

More information

Microsoft Access 2000

Microsoft Access 2000 Microsoft Access 2000 Level 1 Region 4 Teaching, Learning and Technology Center Kaplan, LA Activity 1 Creating a Database 1. Open Microsoft Access 2000 a. Click on START, highlight Programs, point and

More information

Introduction to Microsoft Office Access 2010

Introduction to Microsoft Office Access 2010 Introduction to Microsoft Office Access 2010 The Himmelfarb Health Sciences Library Questions? Ask us. Microsoft Office Access 2010 by Himmelfarb Health Sciences Library is licensed under a Creative Commons

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

Microsoft. Access HOW TO GET STARTED WITH

Microsoft. Access HOW TO GET STARTED WITH Microsoft Access HOW TO GET STARTED WITH 2015 The Continuing Education Center, Inc., d/b/a National Seminars Training. All rights reserved, including the right to reproduce this material or any part thereof

More information

INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL

INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL University of Glasgow Department of Computing Science INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL 1 Databases in Access...2 2 The Database Window...2 3 Help...2 4 Saving...3 5 Wizards...3 6 Tables...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

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

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

Customized Reports using Microsoft Access 2010

Customized Reports using Microsoft Access 2010 Customized Reports using Microsoft Access 2010 If you are considering using Microsoft Access to view InfoSource data, it is assumed that the SIRI reports are not robust enough to meet your student data

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

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

Access 2007 Overview

Access 2007 Overview Overview Computer Training Centre tcentre@ucc.ie 4903749/3751/3752 Contents Introduction... 4 What is a Database?... 4 Benefits of Using a Database... 4 Microsoft Access Description... 4 Elements of an

More information

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by

More information

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

Topic: Relationships in ER Diagram and Relationships in MS Access

Topic: Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Topic: Relationships in ER Diagram and Relationships in MS Access Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

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

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003 Databases with Microsoft Access Using Access to create Databases Jan-Feb 2003 What is a Database? An Organized collection of information about a subject. Examples: Address Book Telephone Book Filing Cabinet

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

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

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

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries

Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table

More information

MICROSOFT OFFICE ACCESS 2007 - LEVEL 1

MICROSOFT OFFICE ACCESS 2007 - LEVEL 1 MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - LEVEL 1 Exploring Access Creating Tables Working with Tables Editing Tables Finding and Filtering Data Printing Data Creating Relationships Using Simple

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

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

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Introduction to. Microsoft Access 2000. Practicals

Introduction to. Microsoft Access 2000. Practicals Introduction to Microsoft Access 2000 Practicals 1 Contents Practical 1..1 Introduction to Access basics. Getting help in Access. Creating databases and tables. Practical 2 13 More on creating, editing

More information

Introduction to Access 2013

Introduction to Access 2013 Introduction to Access 2013 Information Technology Services West Virginia University IT Service Desk (304) 293-4444, oithelp@mail.wvu.edu Workshop Materials: it.wvu.edu/training/classmat/db/ Last Revised:

More information

Microsoft Word 2007 Module 1

Microsoft Word 2007 Module 1 Microsoft Word 2007 Module 1 http://pds.hccfl.edu/pds Microsoft Word 2007: Module 1 July, 2007 2007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

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

Introduction to Microsoft Access XP

Introduction to Microsoft Access XP Introduction to Microsoft Access XP Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. An address book or a library

More information

Access NAMES Computerized Database

Access NAMES Computerized Database Access NAMES Computerized Database 2014 USER'S GUIDE Last Updated: 4/2014 Prepared by: BEVERLY J. SIMS COMPUTER SPECIALIST bsims@uaex.edu 501-671-2263 The Division of Agriculture offers its programs to

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

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

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

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

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

Creating and Using Forms in SharePoint

Creating and Using Forms in SharePoint Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a

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

Sample- for evaluation only. Introductory Access. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc.

Sample- for evaluation only. Introductory Access. TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. A Presentation of TeachUcomp Incorporated. Copyright TeachUcomp, Inc. 2010 Introductory Access TeachUcomp, Inc. it s all about you Copyright: Copyright 2010 by TeachUcomp, Inc. All rights reserved. This

More information

NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA

NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA Concept of Database-Access Section- A 1. An organized collection of logically related data is known as A. Data B. Meta data C. Database D. Information 2.

More information

Introduction to Microsoft Access

Introduction to Microsoft Access Welcome to Teach Yourself: Introduction to Microsoft Access This Teach Yourself tutorial explains the basic operations and terminology of Microsoft Access 2003, a database management program. Microsoft

More information

Data Warehousing With Microsoft Access

Data Warehousing With Microsoft Access R. Jason Weiss Development Dimensions International This issue s edition of the Leading Edge was submitted by guest writer Robert J. Townsend. Data Warehousing With Microsoft Access Robert J. Townsend

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

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

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

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

How To Create A Database For Employee Records In A Club Account In A Computer System In A Cell Phone Or Cell Phone With A Cell Computer (For A Cell)

How To Create A Database For Employee Records In A Club Account In A Computer System In A Cell Phone Or Cell Phone With A Cell Computer (For A Cell) Creating a Database Lab 1 Objectives After completing this lab, you will know how to: 1 Plan, create, and modify a database. 2 Create and save a table structure. 3 Define field names, data types, field

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information