Introduction. Other titles in the series include: GCSE ICT Theory Pack 2 GCSE ICT Practical Course Pack 1. Steve McWeeney September 2006

Size: px
Start display at page:

Download "Introduction. Other titles in the series include: GCSE ICT Theory Pack 2 GCSE ICT Practical Course Pack 1. Steve McWeeney September 2006"

Transcription

1 GCSE ICT Practical Course Pack 2 Introduction GCSE ICT Practical Course Packs 1 and 2 have been written to comply with the AQA Specification A for GCSE ICT. The material has been revised to match the changes made to the specifications in 2005, and is also suitable for the 2007 specifications. With the convergence in theory content under the new specifications, the packs can also be used with other examination boards. While the GCSE ICT Practical Course packs can be used on their own, they can also be used with GCSE ICT Theory Packs 1 and 2 and the Worksheets to form a complete GCSE ICT course. The three elements have been written to complement each other with the minimum amount of duplication. These two packs cover the practical elements of the course. This, the second pack, concentrates solely on database work. The work covers all the elements of database production, including analysis of data requirements, but there is less emphasis on the general identification of user requirements since this was amply covered in Pack 1. The students introduction to ICT practical work (pages 2 to 6) has been reproduced from Pack 1 to accommodate those who may wish to use this pack on its own. Pack 1 provides a set of separate tasks, each with a different context. This pack provides a number of closely related problems within a single context, thus bridging the gap between the approach required for the exam board set assignment and that needed for the project. There are consequently fewer individual problems than Pack 1 and it is more important that the work is done in the order in which it appears in the pack. The student record sheet (page 61) can be used to monitor individual progress and also to agree and set target dates for the student to complete each task. The week numbers are provided as a guide and, if followed, would mean that this practical course should be completed by the end of March in Year 10. The suggested timing is generous and most students should be able to complete the work in a shorter time than that suggested, leaving more time for their examination coursework. Suggested completion dates appear in the context letter or dialogue at the start of each task. If you use different dates then students should be given these before they complete their performance criteria so that the criteria contain the correct agreed completion date. In some instances, students are asked to mark the text. You may want to produce additional copies of these pages (ie pages 24 to 25 and 44 to 47) for students to use, so that their original copy is left unmarked. The various files needed by the students for each task may be downloaded from (see pages 48 and 49 for additional notes on the files). Note that inches are used as the unit of measurement in all desktop publishing and documentbased tasks. This is a deliberate choice since the unit of text size (ie the point) is 1/72 inch. Other titles in the series include: GCSE ICT Theory Pack 1 GCSE ICT Worksheets GCSE ICT Theory Pack 2 GCSE ICT Practical Course Pack 1 Steve McWeeney September 2006 Pearson Publishing Tel

2 GCSE ICT Practical Course Pack 2 Practical 1 Practical 1: The Junior Library Newington Library has a junior section which caters for young people up to the age of 16. Mr Jones, the librarian, is keen to computerise the library s records and has sent a series of memos outlining the requirements of the solution that is required. The first memo from Mr Jones is shown below. He outlines some details about two files that the database will have: members and books. Members and books Memo Obviously, since we are a library, we need to store details about our members and the books that we have. Members sometimes ask if we have a particular book. Occasionally, they will know the title and the author but, more often, they only remember the title. Some members can only remember one or two words from the title. Often, if a member has enjoyed a book by a particular author, they will ask if we have any more books by the same author. We only cater for members from the ages of 12 to 16. When a member reaches the age of 17, we write to them, pointing out that they are no longer eligible for membership and offering to enrol them in the main library. We like to maintain a friendly atmosphere in the library and so, when we write to members, we always use their first name at the start of the letter. Of course, the address label has to have the member s full name. The library service is paid for by the local council and we have to provide them with statistical information from time to time. For example, we must tell them the average age of our members and also the percentage of boys and girls who are members. Members, books, data and CSV files The members 1 What does Mr Jones say in the memo that explains why the members file will need to store the following data? a Member s date of birth. b Member s first name. c Member s street, town and postcode. d Member s sex. 2 Each member is given a unique six-digit membership number. Why is this necessary? 3 What two pieces of book data must the library store in the books file to meet the requirements outlined in the memo? Pearson Publishing Tel

3 GCSE ICT Practical Course Pack 2 Practical 4 Book issue design When a book is issued, the librarian needs to record the membership number of the member borrowing the book, the book number and the date. No other information is needed. If the membership number is known, the member s details can be found from tblmembers. If the book number is known, the book details can be found from tblbooks. A new table will be needed to store the loan details. The design for this table is shown below: Table name: tblloans Field name Data type Range Comment Loan number Autonumber Key field Membership number Book number Text Text 6 characters 15 characters Date Date Should automatically be today s date The Membership number and Book number fields in this table will be used to link to the two other tables that store membership data and book data. It is very important that the data type and ranges chosen for these fields are exactly the same in this table as they were in the original tables, otherwise the links between the tables will not be possible. When a book is issued, the librarian will input the membership number and the book number using a form displayed on the computer screen. These will be entered using a special drop-down list of valid numbers, which will ensure that the design meets the requirement to allow only valid data to be input. When the entry screen design is produced, the drop-down lists are shown using the symbol on the right. Drop-down list symbol When the librarian clicks on the arrow, a list of valid numbers will be shown. The librarian can also type in the number, but only valid numbers will be accepted. Part of the input screen design is shown on page 29. Copy and complete the design to show where the other information that the librarian wants to see on the input screen will be displayed. The information will be displayed in ordinary boxes, like the date box not in drop-down lists. Reread the memo on page 27 if you do not remember the additional information that is to be shown on the input form. The form will be given the name frmbookissue. Pearson Publishing Tel

4 GCSE ICT Practical Course Pack 2 Practical 4 Setting up the table 1 Set up the table tblloans, according to the design on page 28. The data type counter that you need for the loan number field is available from the drop-down list of data types. You will need to set loan number as the key field. To do this you should place the cursor anywhere on the loan number row and click the primary key tool on the toolbar. This has an icon that looks like a key as shown below. 2 Close your new table, saving it with the name chosen in the design tblloans. You should now see three tables in the database view window, ie tblbooks, tblloans and tblmembers. Setting up the query 1 Now set up the query qrybookissue following the design given on page 29. You will need to add all three tables to the query. Microsoft Access should show the links between the tables with lines, as in the diagram on the left. If these links are not present, click on the appropriate field in either tblbooks or tblmembers and drag to the corresponding field in tblloans. This will set up the link that Access needs to bring the correct data from the different tables together. 2 Make sure that you drag the membership number and book number fields from tblloans and not from tblmembers or tblbooks. Do not forget the other fields following your design on page 29. Save your new query as qrybookissue. Pearson Publishing Tel

5 GCSE ICT Practical Course Pack 2 Teacher s notes and answers Finding a book evaluation (page 22) The solution produces the required details of book number, title and author in the order specified. The list is automatically sorted so that the authors appear in alphabetical ascending order, and a particular author s titles are also sorted alphabetically. In order to achieve this, author and title had to be added to the query twice, once to display and once to sort. The correctly formatted, sorted and ordered lists can be seen in printouts obtained in Test 3 where two authors books are displayed. The system will find a book when all or any part of the title is known. Tests 3, 4, and 5 demonstrate the system working when a word from within the title, the start of the title or the end of the title is known. Test 1 shows that the system produces the required results when the whole of the title is known and entered. The system is fairly easy to use. The librarian runs the query and enters the title and the results are displayed. The system does not crash or report an error if there are no matching books in the database. However, if the librarian had to find a number of titles, one after the other, then the system might be a little awkward to use. After each list of results is displayed, the query must be closed down before it can be run again. If a number of members were waiting to obtain information then the system would be a little inefficient. It could be improved if some way could be found to have two buttons. One could be clicked to close the query and the other would allow the librarian to enter another search. This would speed up the system when several queries need to be done one after the other. Practical 3: Mailmerge Letter (page 23) Mailmerge design and test plan (pages 23) Choice of software a Microsoft Word will be used to produce the basic mailmerge document and for doing the mailmerge itself. b Microsoft Word allows us to merge the basic document with data from a Microsoft Access database, which we already have for the library. Also, the sample document that has been supplied is a Word document and it will be easier to stay within the same application when turning it into a mailmerge document. c Access will be used to select the particular data needed from the database. d The library already has a database of members stored in Access. I will be able to create a query that selects the records and fields needed by the mailmerge document. An Access query can supply data directly to a mailmerge document. Performance criteria 1 The solution must produce letters for the correct people only. 2 The letter must have the same layout as last year s. Pearson Publishing Tel

Introduction. course. The three elements have been written to complement each other with a minimum amount of duplication.

Introduction. course. The three elements have been written to complement each other with a minimum amount of duplication. GCSE ICT Worksheets Introduction GCSE ICT Worksheets has been written to comply with the AQA Specification A for GCSE ICT. This is the new specification for examination in 2003. With the convergence in

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

1 Introduction to Excel Databases April 09

1 Introduction to Excel Databases April 09 1 Introduction to Excel Databases April 09 Contents INTRODUCTION TO DATABASES... 3 CREATING A DATABASE... 3 SORTING DATA... 4 DATA FORMS... 5 Data Form options... 5 Using Criteria... 6 FILTERING DATA...

More information

Section 1 Creating Mail Merge Files

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

More information

Excel Tables and Pivot Tables

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

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 5 Using Databases ECDL Syllabus 5 Courseware Module 5 Contents UNDERSTANDING DATABASES... 1 KEY CONCEPTS... 1 DATABASE ORGANIZATION...

More information

Introduction. content introduced in 2003, the packs can also be used with other examination boards.

Introduction. content introduced in 2003, the packs can also be used with other examination boards. Introduction effect that the user is actually present in a computer generated GCSE ICT Theory Packs 1 and environment. 2 have been written to comply with the AQA Specification A for GCSE ICT. The material

More information

Database Use & Design

Database Use & Design Database Use & Design 1 Important Terms and Definitions Database A collection of information organized in such a way that a computer program can quickly select desired pieces of data. Field Form Primary

More information

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1.

-Using Excel- *The columns are marked by letters, the rows by numbers. For example, A1 designates row A, column 1. -Using Excel- Note: The version of Excel that you are using might vary slightly from this handout. This is for Office 2004 (Mac). If you are using a different version, while things may look slightly different,

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Microsoft Word 2010 Introduction to Mail Merge

Microsoft Word 2010 Introduction to Mail Merge Microsoft Word 2010 Introduction to Mail Merge Elizabeth Wells February 2012 Copyright 2012 ElizabethWells All rights reserved. Except as permitted under current legislation, no part of this work may be

More information

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

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

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

INFORMATION SHEET 24002/1: AN EXCEL PRIMER

INFORMATION SHEET 24002/1: AN EXCEL PRIMER INFORMATION SHEET 24002/1: AN EXCEL PRIMER How to use this document This guide to the basics of Microsoft Excel is intended for those people who use the program, but need or wish to know more than the

More information

ReadyResults.net Viewing, Printing, and Customizing Reports. For help, send to: or call:

ReadyResults.net Viewing, Printing, and Customizing Reports. For help, send  to: or call: ReadyResults.net 2014 Viewing, Printing, and Customizing Reports For help, send email to: help@readyresults.net or call: 877-456-1547 Table of Contents Overview... 1 Selecting and Viewing Reports... 1

More information

Introduction to Microsoft Access 2016

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

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

Excel. Database functions

Excel. Database functions Excel Database functions Objectives Week 3 By the end of this session you will be able to :- Move around a worksheet Recognise cell references Sort data alphabetically Insert rows and columns Delete rows

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

Beginning Excel. Revised 4/19/16

Beginning Excel. Revised 4/19/16 Beginning Excel Objectives: The Learner will: Become familiar with terminology used in Microsoft Excel Create a simple workbook Write a simple formula Formatting Cells Adding Columns Borders Table of Contents:

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

More information

Information and Communication Technology Paper 2: Practical Paper

Information and Communication Technology Paper 2: Practical Paper Pearson Edexcel International GCSE Information and Communication Technology Paper 2: Practical Paper 16 20 May 2016 Time: 3 hours Paper Reference 4IT0/02 You must have: Short treasury tag, cover sheet,

More information

AS Computer Science. Induction task 1: Definitions Induction task 2: System & Application software Induction task 3: Past paper questions

AS Computer Science. Induction task 1: Definitions Induction task 2: System & Application software Induction task 3: Past paper questions AS Computer Science Induction task 1: Definitions Induction task 2: System & Application software Induction task 3: Past paper questions We are pleased you have chosen to study Computer Science AS level.

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file UNIT ONE: The Worksheet T o p i c s : Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file I. Start Excel: 1. Click the Start button in the lower-left corner

More information

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Information and Communication Technology Paper 2: Practical Paper

Information and Communication Technology Paper 2: Practical Paper Pearson Edexcel International GCSE Information and Communication Technology Paper 2: Practical Paper 16 20 May 2016 Time: 3 hours Paper Reference 4IT0/02 You must have: Short treasury tag, cover sheet,

More information

SedonaOffice Users Conference. San Francisco, CA January 21 24, Query Builders. Presented by: Matt Howe

SedonaOffice Users Conference. San Francisco, CA January 21 24, Query Builders. Presented by: Matt Howe SedonaOffice Users Conference San Francisco, CA January 21 24, 2018 Query Builders Presented by: Matt Howe This Page Intentionally Left Blank Page 2 of 20 Table of Contents Overview... 4 Example 1 Sales

More information

Getting Started with Excel

Getting Started with Excel Getting Started with Excel Excel Files The files that Excel stores spreadsheets in are called workbooks. A workbook is made up of individual worksheets. Each sheet is identified by a sheet name which appears

More information

Guide to using Membership lists

Guide to using Membership lists Your Membership list Guide to using Membership lists A maximum of five Committee Members per Local Group can be given website editing rights and there are two types of access available: senior rights allow

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Create it Introduction to Microsoft Excel It's the beginning of the year (or you just got your new computer) and you want to create an electronic grade book to keep track of student achievement and do

More information

Tracking Database. COL live (COL only)

Tracking Database. COL live (COL only) II. Tracking Database The Tracking Database is used to keep track of information about each participant enrolled in the COL/AS+ Project. Native Boys and Girls Club staff who are participating in the project

More information

Creating a data file and entering data

Creating a data file and entering data 4 Creating a data file and entering data There are a number of stages in the process of setting up a data file and analysing the data. The flow chart shown on the next page outlines the main steps that

More information

How to Download Data from MiSiS

How to Download Data from MiSiS How to Download Data from MiSiS Note: This guide provides instructions for using Excel 2007. If you have a newer system, please see the Excel 2010 guide. Downloading data from MiSiS is useful for: Mail

More information

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program.

Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Microsoft Excel 2007 Beginning The information below is devoted to Microsoft Excel and the basics of the program. Starting Excel Option 1: Click the Start button on the taskbar, then Programs>Microsoft

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

More information

GOOGLE SHEETS MANAGING YOUR DATA

GOOGLE SHEETS MANAGING YOUR DATA GOOGLE SHEETS MANAGING YOUR DATA TABLE OF CONTENTS USING GOOGLE SHEETS AS A DATABASE... 1 CREATING A DATABASE... 2 DATA MENU... 3 SORTING LISTS... 4 SORTING IN ASCENDING/DESCENDING ORDER... 5 FILTERING

More information

Opening Microsoft Word. 1. Double click the Word 2016 icon on the desktop to launch word.

Opening Microsoft Word. 1. Double click the Word 2016 icon on the desktop to launch word. Intro to Microsoft Word 2016 Class Description: This class will provide an introduction to the word processing program Microsoft Word 2016. Learn how to create a simple document, edit and format text,

More information

Introduction to Microsoft Excel 2007

Introduction to Microsoft Excel 2007 Introduction to Microsoft Excel 2007 Microsoft Excel is a very powerful tool for you to use for numeric computations and analysis. Excel can also function as a simple database but that is another class.

More information

Introduction to Access 97/2000

Introduction to Access 97/2000 Introduction to Access 97/2000 PowerPoint Presentation Notes Slide 1 Introduction to Databases (Title Slide) Slide 2 Workshop Ground Rules Slide 3 Objectives Here are our objectives for the day. By the

More information

Introduction to Microsoft Access

Introduction to Microsoft Access Introduction to Microsoft Access Chapter 1 Data is simply a collection of characters (that is, letters, numbers and symbols) which, on their own, have no particular meaning. When data about a particular

More information

Excel Quick Reference Guide

Excel Quick Reference Guide Excel Quick Reference Guide CONTENTS Screen elements 3 Mouse shapes and actions 3 Cursor movement keys 4 Select a range using the keyboard 4 Edit cell contents 5 Select a range using the mouse 5 Sorting

More information

Reminder/Recall Notices

Reminder/Recall Notices From the Reports menu option, you may generate reminder and recall notices, which include letters, cards, address labels, client listings, and downloadable text files. Generation of reminder and recall

More information

GiftWorks Import Guide Page 2

GiftWorks Import Guide Page 2 Import Guide Introduction... 2 GiftWorks Import Services... 3 Import Sources... 4 Preparing for Import... 9 Importing and Matching to Existing Donors... 11 Handling Receipting of Imported Donations...

More information

Contacts Database. The database is a stand-alone database. Download it to any appropriate directory and rename it as desired.

Contacts Database. The database is a stand-alone database. Download it to any appropriate directory and rename it as desired. Contacts Database 1 License Disclaimer: Use these databases at your own risk. No warranty is expressed or implied. The author is not liable for any consequences occurring from the use of these databases.

More information

Mail Merge Quick Reference Guide

Mail Merge Quick Reference Guide Mail Merge Letters To mail merge letters two documents are needed: 1. The letter, including all text that does not change. 2. Recipient names and addresses (a) The document containing recipient names and

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

Sorting your Database

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

More information

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016

Using Tables, Sparklines and Conditional Formatting. Module 5. Adobe Captivate Wednesday, May 11, 2016 Slide 1 - Using Tables, Sparklines and Conditional Formatting Using Tables, Sparklines and Conditional Formatting Module 5 Page 1 of 27 Slide 2 - Lesson Objectives Lesson Objectives Explore the find and

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

More information

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian An Introduction to Microsoft Excel Lecture No. 2 Date: March 16. 2007 Instructor: Mr. Mustafa Babagil Prepared By: Nima Hashemian 2006 An Introduction to Excel Mathematics Department Eastern Mediterranean

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access After Tables, are perhaps the most important component in a database. are used to retrieve information from a database. Once again, a telephone directory can be used for an example

More information

Kenora Public Library. Computer Training. Introduction to Excel

Kenora Public Library. Computer Training. Introduction to Excel Kenora Public Library Computer Training Introduction to Excel Page 2 Introduction: Spreadsheet programs allow users to develop a number of documents that can be used to store data, perform calculations,

More information

MAXQDA and Chapter 9 Coding Schemes

MAXQDA and Chapter 9 Coding Schemes MAXQDA and Chapter 9 Coding Schemes Chapter 9 discusses how the structures of coding schemes, alternate groupings are key to moving forward with analysis. The nature and structures of the coding scheme

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

Module 5. Databases. Astro Computer Training. Page 1

Module 5. Databases. Astro Computer Training. Page 1 Module 5 Databases Astro Computer Training Page 1 1. Database Terminologies What is a Database? A database is a collection of data related to a particular topic organised and stored for easy retrieval.

More information

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting:

Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics. To apply number formatting: Microsoft Excel 2013: Part 3 More on Formatting Cells And Worksheet Basics Formatting text and numbers In Excel, you can apply specific formatting for text and numbers instead of displaying all cell content

More information

Payment Function Exercise

Payment Function Exercise Payment Function Exercise Follow the directions below to create a payment function exercise. Read through each individual direction before performing it, like you are following recipe instructions. Remember

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

ICDL & OOo BASE. Module Five. Databases

ICDL & OOo BASE. Module Five. Databases ICDL & OOo BASE Module Five Databases BASE Module Goals taken from the Module 5 ICDL Syllabus Module 5 Database requires the candidate to understand some of the main concepts of databases and demonstrates

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step.

1. AUTO CORRECT. To auto correct a text in MS Word the text manipulation includes following step. 1. AUTO CORRECT - To auto correct a text in MS Word the text manipulation includes following step. - STEP 1: Click on office button STEP 2:- Select the word option button in the list. STEP 3:- In the word

More information

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection

Excel Tips for Compensation Practitioners Weeks Data Validation and Protection Excel Tips for Compensation Practitioners Weeks 29-38 Data Validation and Protection Week 29 Data Validation and Protection One of the essential roles we need to perform as compensation practitioners is

More information

Microsoft Access 2010

Microsoft Access 2010 www.jwalkonline.org/main michael@jwalkonline.org @MichaelJWalk Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes,

More information

Sorting and Filtering Data

Sorting and Filtering Data chapter 20 Sorting and Filtering Data IN THIS CHAPTER Sorting...................................................... page 332 Filtering..................................................... page 337 331

More information

Enterprise Timetabler Beginners Training Worksheet 1

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

More information

CMPF124 Microsoft Excel Tutorial

CMPF124 Microsoft Excel Tutorial Lab 5: Microsoft Excel Tutorial Excel Worksheet Microsoft Excel works as account ledger. An Excel Workbook (1) could have multiple Worksheets (2). A cell in Excel is referred by its Column and Row naming

More information

Writing a Letter - Part 1

Writing a Letter - Part 1 Writing a Letter - Part 1 Writing is one of the most important skills for success in today's world. Most teachers find word processing to be a valuable tool in developing student writing skills as well

More information

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline.

2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. Excel Assignment 3 1. Create a new worksheet on Sheet 3. 2. Key the titles in cells A1 to D1, adjust to size 12, click on the bold button, and format with an underline. 3. Under Class in column D key Algebra

More information

ICT IGCSE Databases (Access) A database is a collection of data or information stored in a logical format.

ICT IGCSE Databases (Access) A database is a collection of data or information stored in a logical format. A database is a collection of data or information stored in a logical format. Paper Based Database: Before computer based databases became available data would be kept on paper and stored in filing cabinets.

More information

Surfing the Web Student Response

Surfing the Web Student Response Surfing the Web Student Response CT.B.1.4.1 The student uses efficient search methods to locate information. Name: Date: Locate the Websites for the following information and give the complete URL address.

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

Section 1 Microsoft Excel Overview

Section 1 Microsoft Excel Overview Course Topics: I. MS Excel Overview II. Review of Pasting and Editing Formulas III. Formatting Worksheets and Cells IV. Creating Templates V. Moving and Navigating Worksheets VI. Protecting Sheets VII.

More information

Making Excel Work for Your Tribal Community

Making Excel Work for Your Tribal Community Making Excel Work for Your Tribal Community Excel Basics: Intermediate Skills PHONE: 1-800-871-8702 EMAIL: INFO@CBC4TRIBES.ORG WEB: TRIBALINFORMATIONEXCHANGE.ORG MAKING EXCEL WORK FOR YOUR TRIBAL COMMUNITY

More information

Instructions for using the Excel workbook EligibilityInputForm template

Instructions for using the Excel workbook EligibilityInputForm template Instructions for using the Excel workbook EligibilityInputForm template ALWAYS start with the workbook template found on the WTCS EMS website. Remember that there are specific instructions for getting

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Conference Users Guide for the GCFA Statistical Input System.

Conference Users Guide for the GCFA Statistical Input System. Conference Users Guide for the GCFA Statistical Input System http://eagle.gcfa.org Published: November 29, 2007 TABLE OF CONTENTS Overview... 3 First Login... 4 Entering the System... 5 Add/Edit Church...

More information

Access Intermediate

Access Intermediate Access 2013 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC124 AC125 Selecting Fields Pages AC125 AC128 AC129 AC131 AC238 Sorting Results Pages AC131 AC136 Specifying Criteria Pages

More information

Database Concepts Using Microsoft Access

Database Concepts Using Microsoft Access lab Database Concepts Using Microsoft Access 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance

Good Practice Guide No 8. An Introduction to Spreadsheets for Finance Good Practice Guide No 8 An Introduction to Spreadsheets for Finance WYCAS provides a range of specialist services designed to meet the needs of the third sector One to one support and training Preparation

More information

To create a Commodity Level Multiple Invoice/Credit Memo, you must know or have the following;

To create a Commodity Level Multiple Invoice/Credit Memo, you must know or have the following; These instructions allow you to create a payment or credit memo for a Vendor (payee) with multiple invoices or credit memos, using Commodity Level Accounting. Commodity Level accounting is the default

More information

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access This module was developed to assist students in passing the SkillCheck Incorporated Access 2003 Technology Competency Assessment. It was last updated

More information

MS Excel Henrico County Public Library. I. Tour of the Excel Window

MS Excel Henrico County Public Library. I. Tour of the Excel Window MS Excel 2013 I. Tour of the Excel Window Start Excel by double-clicking on the Excel icon on the desktop. Excel may also be opened by clicking on the Start button>all Programs>Microsoft Office>Excel.

More information

These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting.

These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting. These instructions allow you to create a payment or credit memo for a Vendor (payee) with one invoice or credit memo, using Document Level Accounting. Document Level accounting can be used when the FOAPAL(s)

More information

Houghton Mifflin Harcourt and its logo are trademarks of Houghton Mifflin Harcourt Publishing Company.

Houghton Mifflin Harcourt and its logo are trademarks of Houghton Mifflin Harcourt Publishing Company. Guide for Teachers Updated September 2013 Houghton Mifflin Harcourt Publishing Company. All rights reserved. Houghton Mifflin Harcourt and its logo are trademarks of Houghton Mifflin Harcourt Publishing

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Prepared By: Graeme Hilson. U3A Nunawading

Prepared By: Graeme Hilson. U3A Nunawading 0 Prepared By: Graeme Hilson U3A Nunawading - 2015 1 CONTENTS This Course Page 3 Reference Material Page 3 Introduction page 3 Microsoft Excel Page 3 What is a Spreadsheet Page 4 Excel Screen Page 4 Using

More information

GETTING STARTED: Let s start by getting familiar with moving around in Access.

GETTING STARTED: Let s start by getting familiar with moving around in Access. Basic Queries in Access 2007: Filtering Ira Chinoy / JOUR 772 & 472 / Philip Merrill College of Journalism Access is a program that allows us to examine the information in a database several different

More information

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50

Excel 2016: Part 1. Updated January 2017 Copy cost: $1.50 Excel 2016: Part 1 Updated January 2017 Copy cost: $1.50 Getting Started Please note that you are required to have some basic computer skills for this class. Also, any experience with Microsoft Word is

More information

Microsoft Word. Part 2. Hanging Indent

Microsoft Word. Part 2. Hanging Indent Microsoft Word Part 2 Hanging Indent 1 The hanging indent feature indents each line except the first line by the amount specified in the By field in the Paragraph option under the format option, as shown

More information

Access Intermediate

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

More information

Illustrated Roadmap. for Windows

Illustrated Roadmap. for Windows Illustrated Roadmap for Windows This Illustrated Roadmap was designed to help the Computer Coordinator customize GradeQuick for their school and for teachers to make further customizations that will affect

More information

Guide for K-6 Teachers

Guide for K-6 Teachers Guide for K-6 Teachers 2009 Houghton Mifflin Harcourt Publishing Company. All rights reserved. Houghton Mifflin Harcourt and its logo are trademarks of Houghton Mifflin Harcourt Publishing Company. Microsoft

More information

Functional Skills ICT Level 1 - Sample assessment Fishing Club. Total time available: 2 hours

Functional Skills ICT Level 1 - Sample assessment Fishing Club. Total time available: 2 hours Functional Skills ICT Level 1 - Sample assessment 3748-024 Fishing Club www.cityandguilds.com September 2011 Version 1.0 For examiner s use only Candidate Name (First, Middle, Last) Question Mark Part

More information

1 Course Tallies and Lists with Designations

1 Course Tallies and Lists with Designations 1 Course Tallies and Lists with Designations 1.1 Quick Reports The following Quick Reports are available to assist with looking at class composition: Course Requests by Course with Designations: Build

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

More information

SBU ICDL. International ICDL. Computer Driving Licence NAMCOL. For further information, please contact: INTERNATIONAL COMPUTER DRIVING LICENCE

SBU ICDL. International ICDL. Computer Driving Licence NAMCOL. For further information, please contact: INTERNATIONAL COMPUTER DRIVING LICENCE SBU ICDL TM INTERNATIONAL COMPUTER DRIVING LICENCE For further information, please contact: Windhoek Tel: 061 320 5279 j.izaks@namcol.edu.na Katima Mulilo Tel: 066 253 065 CblcKatima@namcol.edu.na Eenhana

More information

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013/2016. David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013/2016 David W. Gerbing School of Business Administration Portland State University July 7, 2018 CONTENTS 1 Contents 1 Create a New Database 1 2 Customer

More information

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression

Your Name: Section: INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Your Name: Section: 36-201 INTRODUCTION TO STATISTICAL REASONING Computer Lab #4 Scatterplots and Regression Objectives: 1. To learn how to interpret scatterplots. Specifically you will investigate, using

More information

Instructions & Manual

Instructions & Manual This is the for the Wessex Pricing Program (Advanced) - released February 2005. Contents Page Features 2 Installation 3 Start Screen 3 How the Program Works 4 Other Costs 4 Customise values 4 Printing

More information