Introduction to Access97 (2): Relationships. by Robin Beaumont. Contents 2. LEARNING OUTCOMES CHECK LIST FOR THE SESSION INTRODUCTION...

Size: px
Start display at page:

Download "Introduction to Access97 (2): Relationships. by Robin Beaumont. Contents 2. LEARNING OUTCOMES CHECK LIST FOR THE SESSION...2 3. INTRODUCTION..."

Transcription

1 Introduction to Access97 (2): Relationships by Robin Beaumont Contents 2. LEARNING OUTCOMES CHECK LIST FOR THE SESSION INTRODUCTION RELATIONSHIPS IN ACCESS CREATING RELATIONSHIPS Saving relationships WHAT ADDING REFERENTIAL INTEGRITY DOES WHEN ENTERING DATA AN INTRODUCTION TO DEPENDENCY SUMMARY CHECK WHAT YOU HAVE LEARNT...13 This handout is part of a course. For details please see Section 7.1 at:

2 2. Learning outcomes check list for the session This practical session aims to provide you with the following skills (the 'be able to's' below) and information (the 'know what's' below). After you have completed the session you should come back to these points ticking off those you feel happy with. Learning outcome Be able to create foreign keys in Access. Be able to use the Relationships window Be able to set the appropriate options in the relationships dialogue box to enforce 'referential integrity' Be able to Create, edit and save relationships in Access Understand the concept of dependency (referential integrity) and the effects this has when adding, editing or deleting records Tick box Robin Beaumont 30/03/00 Tel: Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 2

3 3. Introduction During the last Access session we created the tables for the consultations database giving it the Access database name Cons1. During this session we will carry on developing it further by adding relationships between tables. You should have worked through 'Section 7.3 Relationships', to have gained an understanding of the relationships concepts, before completing this practical session. 4. Relationships in Access When we created the six tables that make up the consultations database in the last session we added the necessary foreign keys to the tables. What has this done exactly? Open up the cons1 database you created. Open up the patient table You should now be in datasheet view (the view that shows the contents of each record) rather than design view. If you not move now to the correct view (for details see previous practical sessions notes). You should have one record in the patient table (if not please add it): Field Name Value to add: ID 1 Title Mr First Name john Surname smith Doc ID 100 DOB 01/01/68 Key Point: Remember the database does not know about the data you enter into a field until you have moved to another record or clicked 'save'. Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 3

4 Move look at the doctor table. Does such a doc. ID value exist? What conclusions can you draw? Could this situation exist in reality? The above exercise demonstrates clearly that just adding foreign keys to a table does not ensure that the computer adheres to the foreign key principle (i.e. foreign key values can only be those that already exist as a primary key in the referencing field). Luckily the DBMS (Database Management System), Access, provides a 'relationships' facility to ensure we do not end up in the situation demonstrated above. Key point: Adding foreign key fields to tables does nothing to ensure that the values in them actually exists in the master table where they are the key. To do this you need to set up 'relationships' in the DBMS. Delete the record in the patient table. (for details refer back to the last practical sessions material). Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 4

5 5. Creating relationships This is achieved in Access97 by using the 'Relationships Window '. Introduction to Health Informatics Adding tables to the relationships window Make sure you have the cons1 database open. Make sure you have deleted any records in the Doctor and Patient table. Choose from the database menu Tools relationships (version2 of Access: Edit relationships). Or click the appropriate speed button on the toolbar. You should now have a 'Show table' dialogue box in front of you. If you do not Choose the menu option Relationships Show table (version2 of Access: Relationships -> add table) Another dialogue box appears requesting which table(s) you would like to add. Within the Show table dialogue box (displayed opposite): Choose 'doctor' by highlighting it then click the add button. Choose 'patient' by highlighting it then click the add button. Click the close button. You should now have the two tables you chose above in the relationship window. You can resize the various tables to see all the fields by dragging the sides of the tables. You can also move the tables in the window until they're arranged in the layout you want. The next stage is to create the relationship between the two tables: To create a relationship, you use the mouse to drag one or more fields from the master table to the child table. To drag multiple fields, first hold down the Ctrl key and select the fields. When creating a relationship, you drag from the primary key of one table (shown in bold in the field list) to a matching field (the foreign key) in the related table. Creating links Click on the Doc id field of the doctor table and drag to the Doc id field of the patient table (shown in the diagram below). Do not worry about the cursor changing shape when you do this it is supposed to!: Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 5

6 The relationships dialogue box' now pops up: Enforcing Referential Integrity Click the 'Enforce Referential Integrity' option, as displayed above. Important: This is the option that ensures the values between the key and the foreign key are the same. Click the 'create' button. If you have a error message now such as "unable to create relationship as records unsuitable " You must have forgotten to delete the records in the tables as requested to do so at the beginning of this session. I this is the case Delete them now! Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 6

7 You should end up with something like the picture below: Key point: Always drag from the primary key to the foreign key. If you don't you'll get the relationship the wrong way round! Add the Episode table to the relationships window. Add the relationship between patient and episode Add the relationship between doctor and episode You will have noticed by now that it is often necessary to move the various tables around to get something that is acceptable visually. Robin Beaumont 30/03/00 Tel: Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 7

8 Now add the last three, diagnosis, tables, to the relationships window. Add the necessary relationships to obtain something similar to the diagram below. 5.1 Saving relationships To save the work you have done above. While in the 'relationships window' choose menu option File Save. (Save layout in Access2) It should be noted that saving while in the relationships window also saves the actual referential integrity rules as well as the layout picture in the relationships window. Robin Beaumont 30/03/00 Tel: Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 8

9 6. What adding Referential Integrity does when entering data The following exercise demonstrates some of the advantages (and disadvantages) of creating relationships and referential integrity constraint. Invalid foreign key value Add the following record to the patient table. Remember to add a record to the database and not just the screen you need to move to another record (row) in the table to give the computer the necessary kick. Field Name Value to add: ID 1 Title First Name Surname Mr john smith Doc ID 23 DOB 01/01/68 What happens. Do you consider this useful? Add your comments: You should have had an error box popping up with the message 'Can't add or change record. Referential integrity rules require a related record in table doctor'. Click the 'OK' button. Delete the record To solve the problem we need to add a doctor record with the required ID: Add a record to the doctor table with an ID of 23. You can put anything you want into the other fields. Remember to add a record to the database and not just the screen you need to move to another record (row) in the table. Then go back to the patient table and try again putting the record in. Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 9

10 Editing a primary key that is referenced as a foreign key somewhere else. You should now have a record in the doctor table with a ID of 23 and a record in the patients table with a Doctor ID value of 23. The value of the other fields do not matter for now. Try changing the doctor ID value in the doctor table record to 100. What happens? Describe below: Press the 'Esc' key to reset the value to 23. This will undo the editing you have done and allow you to get out of the field Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 10

11 Deleting a primary key that is referenced as a foreign key somewhere else. You should now have a record in the doctor table with a ID of 23 and a record in the patients table with a Doctor ID value of 23. The value of the other fields do not matter for now. Try deleting the record in the doctor table. What happens? Describe below: If necessary, press the 'Esc' key to reset the record. Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 11

12 7. An introduction to dependency Introduction to Health Informatics What is happening in the above exercises is all to do with dependency. One table is said to be dependent upon another. The terms parent (or master)' and 'child' are often used. The best way to think about dependency is to consider actions over time using the CRUD matrix discussed in Database Concepts (1)' Concepts (1). Process: Time First action Second action Creation Master Child Updating master: Updating child: Master Master Child updated Child updated only if value is in master field Deleting a master: Deleting a child: Master only if no children exist No problem The above diagram is explained below: Creation of a record: with a foreign key value requires that the value already exists in the table in which the foreign key is the primary key (doctor ID in doctor table must exist before creating a patient record with the doctor ID). Which table would be considered to be the 'master' and the child in the paragraph above? Updating of a master table key field: (the one which does not have the foreign key) This is not allowed. But there are ways around it, try the exercise below. Take a look at the options on the 'relationships' dialogue box (it has been printed out a few pages back). What do you think the cascade options do? Updating a child table record:(i.e. a record in the patient table if it were not related to the episode table). This is not a problem unless you try to change the foreign key value to one that does not exist in the master table. Deleting of a master table key field: (i.e. where the Key is used as a foreign key somewhere else), as we discovered in the exercise above this situation creates problems. The previous exercise should have provided a hint as to how this is partially resolved in Access97. Deleting a child table record: (i.e. a record in the patient table if it were not related to the episode table). This is not a problem. Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 12

13 Look up the help in Access on relationships. 8. Summary During this session we have seen how Access97 creates and maintains relationships using the Relationships window and the consultations database (cons1). We have also seen the possible problems that can occur if the table structure (i.e. the model) is not thought through, particularly with regard to dependency and updating / deleting records. The added complexity of defining relationships in the model and specifying them in Access97 is unavoidable as they maintain the referential integrity (i.e. synchronisation of all the references = relations) of the database. This was clearly demonstrated in the first exercise where anything could be entered into a foreign key field resulting in parent records related to non-existent doctors (technically called 'dangling pointers')! 9. Check what you have learnt Now go back to the beginning of the material for the session and read through the 'Learning outcomes check list' for it. How many can you tick? If your not sure about any particular one go back through the relevant exercise if you still have a problem then please contact me. Document Info: Robin Beaumont Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Date: 30/03/00 Robin Beaumont 30/03/00 Tel: [email protected] Source: Laptop; C:\HIcourseweb new\chap8\s2\access2.doc Page 13

Introduction to LibreOffice Base (LOB)-2. Relationships. Robin Beaumont Date: Saturday, 07 April 2012 e-mail: [email protected].

Introduction to LibreOffice Base (LOB)-2. Relationships. Robin Beaumont Date: Saturday, 07 April 2012 e-mail: robin@organplayers.co.uk. Introduction to LibreOffice Base (LOB)-2 Relationships Robin Beaumont Date: Saturday, 07 April 2012 e-mail: [email protected] Contents 2. LEARNING OUTCOMES CHECK LIST... 2 3. INTRODUCTION... 2 4.

More information

Object models and Databases. Contents

Object models and Databases. Contents : Object models and Databases by Robin Beaumont e-mail: [email protected] Contents 2. LEARNING OUTCOMES CHECK LIST FOR THE SESSION... 2-2 3. INTRODUCTION... 3-3 4. A STRATEGY FOR SPECIFYING

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

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

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

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class.

In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. Creating a Pie Graph Step-by-step directions In this example, Mrs. Smith is looking to create graphs that represent the ethnic diversity of the 24 students in her 4 th grade class. 1. Enter Data A. Open

More information

Microsoft Word 2010: How to Resize and Move Clip Art

Microsoft Word 2010: How to Resize and Move Clip Art Microsoft Word 2010: How to Resize and Move Clip Art Resizing Clip Art If your clip art is too big or too small you can resize to suit your needs. Click on your image with the left mouse button. You should

More information

Look in the top right of the screen and located the "Create an Account" button.

Look in the top right of the screen and located the Create an Account button. Create an Account Creating a Google Analytics account is a simple but important step in the process of creating your stores. To start the process visit the Google Analytics homepage: http://www.google.com/analytics/

More information

From Data Modeling to Data Dictionary Written Date : January 20, 2014

From Data Modeling to Data Dictionary Written Date : January 20, 2014 Written Date : January 20, 2014 Data modeling is the process of representing data objects to use in an information system. In Visual Paradigm, you can perform data modeling by drawing Entity Relationship

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

Microsoft Excel 2013: Using a Data Entry Form

Microsoft Excel 2013: Using a Data Entry Form Microsoft Excel 2013: Using a Data Entry Form Using Excel's built in data entry form is a quick and easy way to enter data into an Excel database. Using the form allows you to: start a new database table

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

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

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

Drawing a histogram using Excel

Drawing a histogram using Excel Drawing a histogram using Excel STEP 1: Examine the data to decide how many class intervals you need and what the class boundaries should be. (In an assignment you may be told what class boundaries to

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

Creating Fill-able Forms using Acrobat 8.0: Part 1

Creating Fill-able Forms using Acrobat 8.0: Part 1 Creating Fill-able Forms using Acrobat 8.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

Creating Tables ACCESS. Normalisation Techniques

Creating Tables ACCESS. Normalisation Techniques Creating Tables ACCESS Normalisation Techniques Microsoft ACCESS Creating a Table INTRODUCTION A database is a collection of data or information. Access for Windows allow files to be created, each file

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

Microsoft Word 2010 Mail Merge (Level 3)

Microsoft Word 2010 Mail Merge (Level 3) IT Services Microsoft Word 2010 Mail Merge (Level 3) Contents Introduction...1 Creating a Data Set...2 Creating the Merge Document...2 The Mailings Tab...2 Modifying the List of Recipients...3 The Address

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Creating Survey Forms from a Word Table

Creating Survey Forms from a Word Table Creating Survey Forms from a Word Table Doc 5.110 Ver 1 Date July 2003 Author Vivien Hall Central Computing Services 1 Introduction This document explains how to use Microsoft Word for Windows 2000 tables

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

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

Creating a Newsletter with Microsoft Word

Creating a Newsletter with Microsoft Word Creating a Newsletter with Microsoft Word Frank Schneemann In this assignment we are going to use Microsoft Word to create a newsletter that can be used in your classroom instruction. If you already know

More information

Microsoft Word Track Changes

Microsoft Word Track Changes Microsoft Word Track Changes This document is provided for your information only. You SHOULD NOT upload a document into imedris that contains tracked changes. You can choose to use track changes for your

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

Working with SmartArt

Working with SmartArt CHAPTER Working with SmartArt In this chapter by Geetesh Bajaj Understanding SmartArt 206 Adding SmartArt to a Presentation 206 Formatting SmartArt 208 Sample SmartArt Variants 211 Common SmartArt Procedures

More information

Excel Spreadsheet Activity Redo #1

Excel Spreadsheet Activity Redo #1 Excel Spreadsheet Activity Redo #1 Melissa Ebling 11/9/06 Directions: Please follow all directions in this packet. This assignment will consist of your tracking ten different stocks over a period of a

More information

Division of School Facilities OUTLOOK WEB ACCESS

Division of School Facilities OUTLOOK WEB ACCESS Division of School Facilities OUTLOOK WEB ACCESS New York City Department of Education Office of Enterprise Development and Support Applications Support Group 2011 HELPFUL HINTS OWA Helpful Hints was created

More information

MICROSOFT WORD TUTORIAL

MICROSOFT WORD TUTORIAL MICROSOFT WORD TUTORIAL G E T T I N G S T A R T E D Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents,

More information

Appointments: Calendar Window

Appointments: Calendar Window Appointments Appointments: Calendar Window Purpose The Appointment Calendar window is the automated equivalent of a paper appointment book. You can make appointments, confirm appointments, and view appointments

More information

Creating trouble-free numbering in Microsoft Word

Creating trouble-free numbering in Microsoft Word Creating trouble-free numbering in Microsoft Word This note shows you how to create trouble-free chapter, section and paragraph numbering, as well as bulleted and numbered lists that look the way you want

More information

Computer Training Centre University College Cork. Excel 2013 Level 1

Computer Training Centre University College Cork. Excel 2013 Level 1 Computer Training Centre University College Cork Excel 2013 Level 1 Table of Contents Introduction... 1 Opening Excel... 1 Using Windows 7... 1 Using Windows 8... 1 Getting Started with Excel 2013... 2

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

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

Using an Access Database

Using an Access Database A Few Terms Using an Access Database These words are used often in Access so you will want to become familiar with them before using the program and this tutorial. A database is a collection of related

More information

Create a report with formatting, headings, page numbers and table of contents

Create a report with formatting, headings, page numbers and table of contents Create a report with formatting, headings, numbers and table of contents MS Office Word 2010 Combine this model with instructions from your teacher and your report will be something you can be proud of.

More information

Tutorial: Creating a form that emails the results to you.

Tutorial: Creating a form that emails the results to you. Tutorial: Creating a form that emails the results to you. 1. Create a new page in your web site Using the Wizard Interface. a) Choose I want to add a form that emails the results to me in the wizard. b)

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

PowerPoint 2013 Basics of Creating a PowerPoint Presentation

PowerPoint 2013 Basics of Creating a PowerPoint Presentation Revision 4 (01-31-2014) PowerPoint 2013 Basics of Creating a PowerPoint Presentation MICROSOFT POWERPOINT PowerPoint is software that lets you create visual presentations. PowerPoint presentations are

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

PEMBINA TRAILS SCHOOL DIVISION. Information Technology Department

PEMBINA TRAILS SCHOOL DIVISION. Information Technology Department Information Technology Department Intro to Microsoft PowerPoint 2003 INFORMATION TECHNOLOGY DEPT. Introduction to Microsoft PowerPoint 2003 Ivone B. Kordic Instructional Technology Assistant Information

More information

PA Payroll Exercise for Intermediate Excel

PA Payroll Exercise for Intermediate Excel PA Payroll Exercise for Intermediate Excel Follow the directions below to create a payroll exercise. Read through each individual direction before performing it, like you are following recipe instructions.

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

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Computer Training Centre University College Cork. PowerPoint 2013

Computer Training Centre University College Cork. PowerPoint 2013 Computer Training Centre University College Cork PowerPoint 2013 Contents Introduction to PowerPoint 2013... 1 Opening PowerPoint 2013... 1 The Start Screen... 2 The File Tab... 4 The Info Menu... 5 Protect

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

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

LEARNING RESOURCE CENTRE. Guide to Microsoft Office Online and One Drive

LEARNING RESOURCE CENTRE. Guide to Microsoft Office Online and One Drive LEARNING RESOURCE CENTRE Guide to Microsoft Office Online and One Drive LEARNING RESOURCE CENTRE JULY 2015 Table of Contents Microsoft Office Online... 3 How to create folders... 6 How to change the document

More information

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial Microsoft Word 2010 Tutorial GETTING STARTED Microsoft Word is one of the most popular word processing programs supported by both Mac and PC platforms. Microsoft Word can be used to create documents, brochures,

More information

Entering the example employee satisfaction survey in Survey Crafter Professional s Survey Designer window

Entering the example employee satisfaction survey in Survey Crafter Professional s Survey Designer window Survey Crafter, Inc. Survey Crafter Walkthrough Summary: Walkthrough: Applies to: Topic: Synopsis This tutorial walks you through entering the example employee satisfaction survey in Survey Crafter Professional

More information

Fleet Maintenance Software

Fleet Maintenance Software Fleet Maintenance Software Welcome Thank you for taking time to review FleetWise VB Maintenance Management Made Simple. This guide is intended to provide a quick overview of installing the software and

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

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move

In this session, we will explain some of the basics of word processing. 1. Start Microsoft Word 11. Edit the Document cut & move WORD PROCESSING In this session, we will explain some of the basics of word processing. The following are the outlines: 1. Start Microsoft Word 11. Edit the Document cut & move 2. Describe the Word Screen

More information

Handout: Word 2010 Tips and Shortcuts

Handout: Word 2010 Tips and Shortcuts Word 2010: Tips and Shortcuts Table of Contents EXPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 IMPORT A CUSTOMIZED QUICK ACCESS TOOLBAR... 2 USE THE FORMAT PAINTER... 3 REPEAT THE LAST ACTION... 3 SHOW

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

Converting SQLBase Databases to Microsoft Access

Converting SQLBase Databases to Microsoft Access for Environmental Management of Military Lands Converting SQLBase Databases to Microsoft Access By William Sprouse CEMML CENTER FOR ENVIRONMENTAL MANAGEMENT OF MILITARY LANDS Colorado State University

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial

Microsoft PowerPoint 2010 Computer Jeopardy Tutorial Microsoft PowerPoint 2010 Computer Jeopardy Tutorial 1. Open up Microsoft PowerPoint 2010. 2. Before you begin, save your file to your H drive. Click File > Save As. Under the header that says Organize

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

How To Insert Hyperlinks In Powerpoint Powerpoint

How To Insert Hyperlinks In Powerpoint Powerpoint Lesson 5 Inserting Hyperlinks & Action Buttons Introduction A hyperlink is a graphic or piece of text that links to another web page, document, or slide. By clicking on the hyperlink will activate it and

More information

AODA Mouse Pointer Visibility

AODA Mouse Pointer Visibility AODA Mouse Pointer Visibility Mouse Pointer Visibility Helpful if you have trouble viewing the mouse pointer. Microsoft Windows based computers. Windows XP Find the pointer 1. Click the Start button or

More information

Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh

Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh Creating Database Model Diagrams in Microsoft Visio Jeffery S. Horsburgh Visio is a software tool created by Microsoft that contains tools for creating many different types of diagrams. Visio s drawing

More information

Business Objects. Report Writing - CMS Net and CCS Claims

Business Objects. Report Writing - CMS Net and CCS Claims Business Objects Report Writing - CMS Net and CCS Claims Updated 11/28/2012 1 Introduction/Background... 4 Report Writing (Ad-Hoc)... 4 Requesting Report Writing Access... 4 Java Version... 4 Create A

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

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 Office 2010: Introductory Q&As PowerPoint Chapter 1

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1 Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1 Are the themes displayed in a specific order? (PPT 6) Yes. They are arranged in alphabetical order running from left to right. If you point

More information

Weebly.com First Steps

Weebly.com First Steps Weebly.com First Steps Weebly is the easiest way to build your own website. The first thing you need to do is go to www.weebly.com to create an account. Then you will begin with the next steps. The Site

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

Making an online form in Serif WebPlus

Making an online form in Serif WebPlus Making an online form in Serif WebPlus Before you begin your form, it is a very good idea to plan it out on a piece of paper. Decide what information you wish to collect, and which type of fields will

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

Introduction. Inserting Hyperlinks. PowerPoint 2010 Hyperlinks and Action Buttons. About Hyperlinks. Page 1

Introduction. Inserting Hyperlinks. PowerPoint 2010 Hyperlinks and Action Buttons. About Hyperlinks. Page 1 PowerPoint 2010 Hyperlinks and Action Buttons Introduction Page 1 Whenever you use the Web, you are using hyperlinks to navigate from one web page to another. If you want to include a web address or email

More information

How to make a line graph using Excel 2007

How to make a line graph using Excel 2007 How to make a line graph using Excel 2007 Format your data sheet Make sure you have a title and each column of data has a title. If you are entering data by hand, use time or the independent variable in

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

Steps to Create a Database

Steps to Create a Database Steps to Create a Database Design the Database In order for a database to be effective some time should be spent on the layout of the table. Additionally, time should be spent on what the purpose of the

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

Working With Microsoft PowerPoint

Working With Microsoft PowerPoint LIBRARY AND LEARNING SERVICES WORKING WITH MICROSOFT POWERPOINT www2.eit.ac.nz/library/ls_computer.html Working With Microsoft PowerPoint Powerpoint Basics Inserting a Graph Inserting a Sound Saving your

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

Using Google Docs in the classroom: Simple as ABC

Using Google Docs in the classroom: Simple as ABC What is Google Docs? Google Docs is a free, Web-based word processing, presentations and spreadsheets program. Unlike desktop software, Google Docs lets people create web-based documents, presentations

More information

Working with Tables. Creating Tables in PDF Forms IN THIS CHAPTER

Working with Tables. Creating Tables in PDF Forms IN THIS CHAPTER Working with Tables T ables are part of many PDF forms. Tables are commonly set up with columns and rows having a header at the top that describes the content for each column and two or more rows of data

More information

Instructions for Creating Silly Survey Database

Instructions for Creating Silly Survey Database Instructions for Creating Silly Survey Database Create a New Database 1. Find the shortcut or the file that starts MS Access and click it to activate the program. 2. In the Create a New Database Using

More information

Use e-mail signatures in Outlook 2010

Use e-mail signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information

Version 4.1 USER S MANUAL Technical Support (800) 870-1101

Version 4.1 USER S MANUAL Technical Support (800) 870-1101 ESSENTIAL FORMS Version 4.1 USER S MANUAL Technical Support (800) 870-1101 401 Francisco St., San Francisco, CA 94133 (800) 286-0111 www.essentialpublishers.com (c) Copyright 2004 Essential Publishers,

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

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

Introduction to ERD modelling using UML Class diagrams with Magicdraw (ver 17)

Introduction to ERD modelling using UML Class diagrams with Magicdraw (ver 17) Introduction to ERD modelling using UML Class diagrams with Magicdraw (ver 17) Robin Beaumont [email protected] Tuesday, 04 October 2011 Contents: 1. Introduction... 2 1.1. Acknowledgement... 2

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Analyzing Excel Data Using Pivot Tables

Analyzing Excel Data Using Pivot Tables NDUS Training and Documentation Analyzing Excel Data Using Pivot Tables Pivot Tables are interactive worksheet tables you can use to quickly and easily summarize, organize, analyze, and compare large amounts

More information

CheckBook Pro 2 Help

CheckBook Pro 2 Help Get started with CheckBook Pro 9 Introduction 9 Create your Accounts document 10 Name your first Account 11 Your Starting Balance 12 Currency 13 Optional password protection 14 We're not done yet! 15 AutoCompletion

More information

Working with Visio Connectors

Working with Visio Connectors Working with Visio Connectors Overview Connectors are lines that connect your shapes. Once a connection has been made, when the shape is moved, the connector points stay connected and move with the shape.

More information

A Quick Start Guide to Using PowerPoint For Image-based Presentations

A Quick Start Guide to Using PowerPoint For Image-based Presentations A Quick Start Guide to Using PowerPoint For Image-based Presentations By Susan Jane Williams & William Staffeld, Knight Visual Resources Facility College of Architecture, Art and Planning Cornell University.

More information

This course covers the following topics:

This course covers the following topics: Beginning PowerPoint 2007 for Adult Education This course covers the following topics: Outreach and Technical Assistance Network http://www.otan.us Using PowerPoint Creating PowerPoint Presentations Running

More information

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012 QUICK START GUIDE RESOURCE MANAGERS Last Updated: 04/27/2012 Table of Contents Introduction... 3 Getting started... 4 Logging into Eclipse... 4 Setting your user preferences... 5 Online help and the Eclipse

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information