Microsoft Access 2010

Size: px
Start display at page:

Download "Microsoft Access 2010"

Transcription

1 2013\2014 Microsoft Access 2010 Tamer Farkouh

2 M i c r o s o f t A c c e s s P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data (information) on people or things. What is a table? Tables are used to store the data in a structured and organized format. What is a record (row)? A record applies to data entered into a single row of a table. All data in that row would belong to an individual or item. A record would normally include a unique ID number, name, description, plus other relevant information. With each new record, a new row is created. What is a field (column)? Each column (or field) is used to define what specific information is to be entered into that particular column or field. A column titled Class for example would signify this to be the place in a record to enter the Class name when creating each new record. What is Data? Data is the information entered into tables within the database Data types Data types define what type of data will be entered into each field (column) in a table. Text holds up to 255 characters; can be numbers, letters, or symbols Memo holds over 255 characters; can be numbers, letters, or symbols Number numbers only Date/Time valid dates or times Currency numbers displayed as currency AutoNumber a number is automatically input; you cannot type in this field Yes/No only two answers: yes or no [true or false] [on or off] OLE Object you can attach one document to the record HYPERLINK you can put in a hyperlink Attachment attach multiple files to one record including digital photos Look Up Wizard allows you to input a list of choices for a text field Calculated displays a value calculated from other data in the table

3 M i c r o s o f t A c c e s s P a g e 2 Field Properties Properties should be set in order to: format numbers and dates; to limit data entry to specific characters; to validate entries; to provide a mask for input; to require data in a specific field; and/or to set default data. You can see the Field Properties that have been set by viewing the table in Design View. Some of the Field Properties are only available for specific Data Types. Below is a brief description of some of the more popular Field Size allows the setting of the maximum number of characters that can be entered. Format allows you to specify a format or appearance of a date, time, or number. It has hoices such as: short date, medium time, long date, currency, etc. Input Mask uses a particular format of the data entered. Such as a phone number (xxx) xxxxxxx or social security number xxx-xxxxxx. The Input Mask puts in the parenthesis, dashes, slashes while the user just types the data. Caption displays at the top of a column in a table. [It does not replace the field name.] Default Value is a value that is common, for example for a database with names and addresses, the State field could have a Default Value of: TX Validation Rule & Validation Text allow you to set limits, for example on a Number or a Date field you could specify the number be less than or greater than a specific number or that a Date be between specific dates. Required can either be Yes or No. Required Yes means that it will not allow the field to be empty. Indexed has three choices: No, Yes (Duplicates OK), and Yes (No Duplicates). Indexed Yes means that searches and sorts work faster. Text Format ( Memo fields)has two choices: Plain Text and Rich Text. (Rich Text allows the person entering data to use bold, italic, underline and a few other features.) Text Align is used to set the alignment of text in the field. Show Date Picker is available for Date fields. The Date Picker looks like a tiny calendar (small figure right). When you click the Date Picker, the current month calendar pops up (larger figure right). Primary Key A Primary Key is used as a unique identifier for each record in a table and is essential when working with relational tables. To be effective, a Primary Key cannot have duplicate entries and must be set on a field with a unique identifier. When creating a new table, Access automatically adds the ID field with an AutoNumber data type. By default the ID field is also the Primary Key.

4 M i c r o s o f t A c c e s s P a g e 3 A First Look at Access 2010 Click the Start button (bottom left of screen), then select All Programs. Scroll up to locate the Microsoft Office folder button, click it. Click Microsoft Office Access Open the Sample2011 database. Click the Create button at the bottom of the screen. A screen similar (and much larger) to the one below is displayed: Creating a new blank database Start the Access 2010 program if it is not already open. (Refer to figure at bottom of previous page.) Select the Blank Database icon, or if you are in Access, click the File tab and select New then click the Blank Database button. Type Faculty in the File Name box (lower right). Set the folder location for storing it in My Documents\Training (or wherever your instructor tells you to store it). Saving a table Before adding information to an Access database, the fields should be added to a table. The fields should be named, given the correct Data Type and formatted appropriately. Field Properties should be selected as needed. If necessary you can put validations in the fields as well as defaults. Fields are used to organize data into specific fields or columns, for example a FirstName field would store the first name for every individual record entered, as would the LastName, BirthDate, and other fields, etc. Click the Save button in the Quick Access Toolbar. The Save As dialog box is displayed. Type the name Faculty. Click the OK button. [Each object: Form, Query, Report, and Table has its own name] Creating a Table & Setting Field Properties There are three main steps to creating the fields in a table. (1) Type the Field Name (has to be unique in the table). (2) Select the Field Type from the drop-down menu or by typing the first letter. Text is the default Field Type. (3) Set any Field Properties necessary.

5 M i c r o s o f t A c c e s s P a g e 4 What are queries? Using a query is similar to filtering and sorting tables but much more powerful. Multiple criteria can be used in one or more fields to be highly specific about the information you wish to extract from a table. A select query is used to search for and display data according to the specified criteria. This data can then be viewed as a table, in a form created specifically on the query or as a report. An update query is similar to the Find & Replace function found in most Microsoft applications, only more advanced. For example, if a new category has been created in a table, you would create a select query to select the records to be updated. Once it is created and tested, then you would change it to an update query, which would select specific records to change to the new category. NOTE: Update queries cannot create new records, only update existing records. A make table query selects records from one or more tables, and copies the records into a new table. That new table can reside in the database that you have open, or you can create it in another database. An append query, is used when you want to select records and copy them into another table. The tables could reside in the same database or separate databases. A delete query is used when you need to remove entire records (rows) from a table. Delete queries, by default, remove all of the data in each field, along with the unique key field, (normally the primary key field) When the query is run, it removes the entire record (row) from the table.

6 M i c r o s o f t A c c e s s P a g e 5 Creating a select query Start Access and open a file called Queries1.accdb contained in your Access training folder. The database opens with several tables displayed in the Navigation Pane. Open the Orders table. Click the (1) Create tab and click the (2) Query Wizard button in the Other group. New Query dialog box is displayed. With the (3) Simple Query Wizard selected, click (4) OK. The Simple Query Wizard dialog opens. In the (5) Tables/Queries box, select Table: Orders. Add these fields to the (6) Selected Fields box: First Name, Last Name, Category, Product Name, and Order Date. To add an Available Field to the Selected Fields box, click the field then click the right arrow button; Or double click a field in the Available Fields list. NOTE: Clicking the double right arrow button, adds all the fields to the Selected Fields box. Clicking the double left arrow button, removes all the fields from the Selected Fields box. Click the (7) Next button. At this point you can accept the default name provided by Access or type your own. Type Customer in front of (8) Orders Query.Click the (9) Finish button The Customer Orders Query displays the result in table form and the new query can be seen as a new object in the Navigation Pane. Currently all this query has done is to display information from the Orders table using only the fields chosen as you worked through the wizard. NOTE: By default, Access has already saved the query using the name provided during the wizard process. Adding criteria to a query To utilize the power of a query and locate specific records, criteria must be entered to give the query something to work with. For example, if there is a need to locate orders placed between certain dates, the following type of criteria would be entered under the Order Date field on the Criteria line of the query. >= 6/1/2006 AND <=05/31/2007

7 M i c r o s o f t A c c e s s P a g e 6 To add criteria to a query, the query must first be in Design View. Click the Home tab. Click the Design View button to switch to Design View. Similar to other objects when in Design View, queries have their own specific ribbons, functions and tools. NOTE: Although this is currently a Select Query Type, this query can be modified at any stage to become a different type of query and therefore perform a different function. It is a good idea to make sure the Select query is selecting the correct records before making changes to a table with an Update, Append, or Delete query. Access 2010 Intermediate The Query Design Grid is where selected fields from one or more tables have been added to the grid, the Sort order can be set (Ascending, Descending, or Not sorted); fields can be set to Show Criteria is entered. NOTE: Fields can be included in the query design grid for criteria (record search) purposes only; they do not have to be displayed when the query is run. Place the mouse pointer in the Criteria row under the Order Date field in the query design grid and type the following to specify a date range: >=06/01/2006 And <=05/31/2007 Press the Enter key or the Tab key to move to another cell in the grid. (You can also click the mouse in another cell of the grid.) Notice how the criteria changed. Access places # on either side of the dates to signify this value as a date.

8 M i c r o s o f t A c c e s s P a g e 7 Forms Overview Up to this point, you have entered data directly into a table. Rather than having information overload from viewing a screen full of records in a table, forms provide an aesthetically pleasing window to enter and display record information. Forms can be designed to display fields from multiple tables and can also be used to restrict what information users have access to. In addition, buttons can also be added to provide automated functionality. Microsoft Office Access 2010 gives you new tools to help you create forms quickly, and provides new form types and features that improve the usability of your database. Creating forms Forms can be created using the Form tool with a single click of a mouse button. When creating forms this way, Access takes the required information from the underlying table or query and produces a simple form. NOTE: Forms created using the Form tool can be modified at a later stage. Forms can also be designed from scratch using Form Design. Access provides a blank form and you add the desired fields, labels, graphic and functions. Open the database Sample2011 and the table Class Schedule Click the Create tab and click the Form button, in the Forms group.

9 M i c r o s o f t A c c e s s P a g e 8 You will a form similar to the one shown on the right. It displays all the fields within the table. Save the form and leave it opens. Leave the form and leave it open. When using a form only one record at a time is displayed. Move around in the form fields with the mouse or by pressing the Tab key. On the figure (above) the arrow is pointing to the record navigation buttons. Use the navigation buttons to display Access 2010 Intermediate different records. Use the New Record button at the right end of the Navigation buttons to add another record to the table. When the newly created form is displayed on screen, you will notice the FormView button in the View group of the Home ribbon. In Access 2010, the View button displays the alternate view(s) to the current view. Click the View button (circled in the figure below left). Select one of the three views, Form View You see only the data that has been set to display. You cannot change the formatting or size of the fields. Layout View - Access creates the form and displays it in this view. You can make some design changes to the form while it is displaying live data. You can change fonts, size, color and formatting changes and rearrange the order of the fields. Design View You do not see the live data in this view. You do see the three sections of a Form: Header, Detail and Footer. You can add graphics, arrange and align items in the form, add additional controls, change some properties, etc. There is also a Form Layout Tools Format tab. Below the Format tab is a ribbon with all the format related functions. (See the figures below.) The Font group is there to provide text formatting within the form, changing font, size, alignment, etc. The Formatting group allows you to set the display format of field data in the form, regardless of how field properties are configured in the table. For example, although a field may be set to Fixed in a table, displaying a value as 23.86, tools within the Formatting group allow you to add a currency symbol to the value displayed in the form. The table properties remain unchanged. The Gridlines and Controls groups provide tools to change the appearance of the form itself, rather than the data within the table. Within the Controls group is the Add Existing Fields tool. This tool is useful when creating forms from scratch or for replacing or adding additional fields from the underlying table(s). Selecting this tool activates the Field List and fields can be dragged across, placed and positioned within the form. The AutoFormat group provides a selection of pre-formatted styles. Selecting one of the styles alters the forms appearance but not the way data is displayed. Currency symbols, field layout, etc, remain unchanged. NOTE: Although you are able to view record data in Layout View, you cannot edit or enter data.

10 M i c r o s o f t A c c e s s P a g e 9 What are reports? In Access, a report is a summary generated from information in a table or query. Access provides you with a number of tools that help you to quickly build reports that present the data in an organized, meaningful and easy-to-read layout. You can use the commands on the Create tab to create a simple report with a single click, use the Report Wizard to create a more complicated report or create a report from scratch by adding all the data and formatting elements. Whichever method you choose, you will probably need to make a few changes to the design, for example, adjusting column positions and widths to fine tune the final output of the report (how it displays on the screen or prints). Creating a report with Report Wizard Reports are based on information in tables or queries. If the report is to be based on information contained in more than one table, a relationship must exist, however it is far more likely that a query has already been created to produce the information required for the report.

11 M i c r o s o f t A c c e s s P a g e 10 In the Navigation Pane, click once on the Class Schedule table to select it. Click Report Wizard on the Create tab in the Reports group. The Report Wizard is displayed. The Class Schedule Table is selected. Select these fields: Subject, Date, Course Name, StartTime, EndTime and Campus Location. Click Next. Click Subject on the left, and click the right arrow (>) on the screen to cause it to group by Subject. Click Next. Select Date to sort by, Ascending is already selected. Click Next. Select the Stepped Layout, Portrait Orientation, and leave the checkmark for Adjust the field width. Select Access 2010 AutoFormat, click Next, accept the name and click Finish. NOTE: The three Layout options control how the report will be laid out when finished. Consideration should be given to the report Orientation. If there are too many fields for a single page width, select Landscape, otherwise Portrait should be sufficient. Orientation can be changed at any stage before printing. The simple report is displayed in Print Preview ready for printing if there are no changes required. As you can see from the sample below, there are several modifications that need to be made. The Subject column and EndTime columns need to be wider. The Campus Location column is too wide, some of the space can be added to the two columns that are too narrow. Access 2010 Intermediate Click the View drop-down arrow, there are four choices: Report View, Print Preview, Layout View, and Design View. Click Layout View. The Layout View will look similar to the figure below. It is best to work left to right. The dashed line (see arrow in figure) is the margin edge of the report. Don t go outside the dashed line. Widen the Subject to about 2 by dragging the right edge of the Subject box under the Subject Header. Adjust any field widths going from the left to right. You will need to widen the Course Name so that all of the names are visible. Use the left edge of the EndTime column to make the time columns about the same width. Click the Campus Location field. Drag the left edge of the Campus Location to the right, until it is about 0.75 (notice this is increasing the width of the EndTime column). Change to Design View.

12 M i c r o s o f t A c c e s s P a g e 11 Right-click on the Campus Location column, select Properties. In Properties, click the All or Format tab, select Center for Text Align. Select Beginning Date in the Page Header, right-click, select Properties, change the Caption (at the top) to Date and for Text Align select Left. To look at the results of the changes, select Print Preview from the View menu. After looking at the Print Preview, make any minor changes evident; such as the Caption for Campus Location needs to be changed to Campus. Editing and modifying a report is similar to editing a form. The title, field text labels and images can all be resized, moved or deleted as necessary. Even the style can be altered at the click of a button using the preset styles in the AutoFormat group. Reports are not saved until you click the Save button in the Quick Access toolbar or attempt to close the report, at which point Access will prompt you to save the report. Don t work on a report for very long without saving your work Click Save in the Quick Access toolbar. The Save As dialog box is displayed. Change to Print Preview view. Compare it to the first version. Click the Close Print Preview button. Change to Layout View. Click in the StartTime field. Open the Properties and change the Format to Medium Time. Repeat for the EndTime field. Click the Report Design Tools Arrange tab, the AutoFormat group is on the left. Click the down arrow to view the available styles. Select a style. Change to Print Preview to view the new style. Close Print Preview. Save and close the report.

Microsoft Access Basics

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

More information

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

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

More information

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

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

Complete Quick Reference Summary

Complete Quick Reference Summary Microsoft Access 2010 Complete Quick Reference Summary Microsoft Access 2010 Quick Reference Summary Advanced Filter/Sort, Use AC 153 Advanced button (Home tab Sort & Filter, Advanced Filter/Sort) All

More information

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS USING ACCESS TO CREATE A SCIENCE DATABASE A database allows you to enter, store, retrieve, and manipulate data efficiently. You will first design your database and enter information into a table called

More information

Links to Activities ACTIVITY 3.1. Links to Activities ACTIVITY 3.

Links to Activities ACTIVITY 3.1. Links to Activities ACTIVITY 3. ACCESS CREATING QUERIES, FORMS, AND REPORTS Section 3 0 Skills Create a select query using the Simple Query Wizard Create a select query in Design view Add multiple tables to a query Sort the query results

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

Microsoft Access 2007 Module 1

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

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 Microsoft Access 007 Module http://pds.hccfl.edu/pds Microsoft Access 007: Module August 007 007 Hillsborough Community College - Professional Development and Web Services Hillsborough Community College

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities ACCESS SUMMARIZING DATA AND CALCULATING IN FORMS AND REPORTS Section 4 Skills Use functions in a query to calculate statistics Summarize data in a crosstab query Summarize data in a PivotTable Summarize

More information

Microsoft Excel 2010 Part 2: Intermediate Excel

Microsoft Excel 2010 Part 2: Intermediate Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 2: Intermediate Excel Spring 2014, Version 1.0 Table of Contents Introduction...3 Working with Rows and

More information

Links to Activities ACTIVITY 2.1. Links to Activities

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

More information

More Skills 11 Format and Position Report Controls

More Skills 11 Format and Position Report Controls = CHAPTER 5 Access More Skills 11 Format and Position Report Controls Controls can be aligned using buttons on the Ribbon. Using the Ribbon s alignment tools can be quicker and more accurate than positioning

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

AUSTIN COMMUNITY COLLEGE CONTINUING EDUCATION. INTRODUCTION TO DATABASE/FILE MANAGEMENT (Access Introduction) (12 hours) ITSW 1053 COURSE SYLLABUS

AUSTIN COMMUNITY COLLEGE CONTINUING EDUCATION. INTRODUCTION TO DATABASE/FILE MANAGEMENT (Access Introduction) (12 hours) ITSW 1053 COURSE SYLLABUS Course Description: Learn how to design and complete a working database system using this popular software. An introduction to database concepts including: Program parameters, data dictionary, optional

More information

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE

Word Tutorial 3. Creating a Multiple- Page Report COMPREHENSIVE Word Tutorial 3 Creating a Multiple- Page Report COMPREHENSIVE Objectives Format headings with Quick Styles Insert a manual page break Create and edit a table Sort rows in a table Modify a table s structure

More information

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41

Table of Contents. Word. Using the mouse wheel 39 Moving the insertion point using the keyboard 40 Resume reading 41 Table of Contents iii Table of Contents Word Starting Word What is word processing? 2 Starting Word 2 Exploring the Start screen 4 Creating a blank document 4 Exploring the Word document window 5 Exploring

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

Budget Exercise for Intermediate Excel

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

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

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

REPORT WRITER MANUAL (Version 10)

REPORT WRITER MANUAL (Version 10) REPORT WRITER MANUAL (Version 10) 2 Report Writer - Navigation You may access Report Writer by choosing view from your toolbar and selecting Report Writer or by choosing the Report Writer option when you

More information

Access 2010 Intermediate. Access 2010 Intermediate SAMPLE

Access 2010 Intermediate. Access 2010 Intermediate SAMPLE Access 2010 Intermediate Access 2010 Intermediate Access 2010 Intermediate Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

More information

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports

Database Tables Lookup Wizard Relationships Forms Subforms Queries Reports Version 07/11/09 Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Subforms, and the Lookup Wizard May 2009 by Floyd Jay Winters and Julie Manchester winterf@mccfl.edu Database

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Manually adjust column width Place the pointer on the line between letters in the Column Headers. The pointer will change to double headed arrow. Hold

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

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

SAMPLE. Access 2010 Intermediate. Access 2010 Intermediate. Access 2010 Intermediate Page 1

SAMPLE. Access 2010 Intermediate. Access 2010 Intermediate. Access 2010 Intermediate Page 1 Access 2010 Intermediate Access 2010 Intermediate Page 1 Access 2010 Intermediate 2010 Cheltenham Courseware Pty. Ltd. www.cheltenhamcourseware.com.au Access 2010 Intermediate Page 2 2010 Cheltenham Courseware

More information

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

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

More information

Database Design Practice Test JPSFBLA

Database Design Practice Test JPSFBLA 1. You see field names, data types, and descriptions in: a. Datasheet View c. Form View b. Design View d. Property View 2. The data type for insurance policy numbers, such as 0012-M-340-25 or 43F33-7805,

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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Table of Contents The Excel Window... 2 The Formula Bar... 3 Workbook View Buttons... 3 Moving in a Spreadsheet... 3 Entering Data... 3 Creating and Renaming Worksheets... 4 Opening

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Microsoft Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

Excel Select a template category in the Office.com Templates section. 5. Click the Download button.

Excel Select a template category in the Office.com Templates section. 5. Click the Download button. Microsoft QUICK Excel 2010 Source Getting Started The Excel Window u v w z Creating a New Blank Workbook 2. Select New in the left pane. 3. Select the Blank workbook template in the Available Templates

More information

12 BASICS OF MS-EXCEL

12 BASICS OF MS-EXCEL 12 BASICS OF MS-EXCEL 12.1 INTRODUCTION MS-Excel 2000 is a Windows based application package. It is quite useful in entering, editing, analysis and storing of data. Arithmetic operations with numerical

More information

Microsoft Access 5: Reports & Other Useful Functions

Microsoft Access 5: Reports & Other Useful Functions Microsoft Access 5: Reports & Other Useful Functions You can print out simple records of your data by using the Office menu. However, if you want to create a customized report from one or more tables or

More information

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need Unit D CASE Samantha Hooper, a tour developer at Quest Specialty Travel, asks you to produce some reports to help her share and analyze data. A report is an Access object that creates a professional looking

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

Contents. Creating Forms

Contents. Creating Forms Access 2007 Forms Contents Creating Forms... 3 Creating a new form 3 Design view and Form view 5 Creating a user-defined form 5 Changing the look of your form... 6 Layout View 6 Design View 6 Moving and

More information

Introduction. Creating a New Publication. Publisher 2010 Creating a New Publication. To Create a New Publication from a Template: Page 1

Introduction. Creating a New Publication. Publisher 2010 Creating a New Publication. To Create a New Publication from a Template: Page 1 Publisher 2010 Creating a New Publication Introduction Page 1 In the previous lesson, you learned about planning and designing a publication. With that knowledge, you're now ready to create a new publication.

More information

Publisher 2010 Foundation. Publisher 2010 Foundation Level SAMPLE

Publisher 2010 Foundation. Publisher 2010 Foundation Level SAMPLE Publisher 2010 Foundation Publisher 2010 Foundation Level Microsoft Publisher 2010 Foundation - Page 2 1995-2012 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document

More information

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports

SEE GRADING CRITERIA AT THE BOTTOM. Database Tables Lookup Wizard Relationships Forms Queries Reports Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING CRITERIA

More information

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010

Week 5 Creating a Calendar. About Tables. Making a Calendar From a Table Template. Week 5 Word 2010 Week 5 Creating a Calendar About Tables Tables are a good way to organize information. They can consist of only a few cells, or many cells that cover several pages. You can arrange boxes or cells vertically

More information

Microsoft Word 2013 Working with tables

Microsoft Word 2013 Working with tables Microsoft Word 2013 Working with tables LIBRARY AND LEARNING SERVICES WORKING WITH TABLES www.eit.ac.nz/library/ls_computer_word2013_tables.html What is a table? A table is information arranged in horizontal

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 1 Databases and Database Objects: An Introduction Objectives Describe the features of the Access window Create a database Create tables in Datasheet and Design views Add records

More information

MICROSOFT WORD 2010 BASICS

MICROSOFT WORD 2010 BASICS MICROSOFT WORD 2010 BASICS Word 2010 is a word processing program that allows you to create various types of documents such as letters, papers, flyers, and faxes. The Ribbon contains all of the commands

More information

ACCESS. Laboratory Manual. Çankaya University Department of Computer Engineering

ACCESS. Laboratory Manual. Çankaya University Department of Computer Engineering ACCESS Laboratory Manual Çankaya University Department of Computer Engineering 2008 TABLE OF CONTENTS Page INTRODUCTION TO MICROSOFT ACCESS...1 Exercise 1, 2, 3: What Is a Database...9 TABLES...12 Exercise

More information

Microsoft Word 2011 Tutorial

Microsoft Word 2011 Tutorial Microsoft Word 2011 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

Table of Contents COURSE OVERVIEW... 5

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

More information

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

Access 2003 Introduction to Report Design

Access 2003 Introduction to Report Design Access 2003 Introduction to Report Design TABLE OF CONTENTS CREATING A REPORT IN DESIGN VIEW... 3 BUILDING THE REPORT LAYOUT... 5 SETTING THE REPORT WIDTH... 5 DISPLAYING THE FIELD LIST... 5 WORKING WITH

More information

Introduction to Microsoft Office Access 2010

Introduction to Microsoft Office Access 2010 Introduction to Microsoft Office Access 2010 Introduction to Microsoft Office Access 2010 by Himmelfarb Health Sciences Library is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0

More information

Microsoft Office Word 2016 for Mac

Microsoft Office Word 2016 for Mac Microsoft Office Word 2016 for Mac Formatting Your Document University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

MODULE 5 DATABASES. Content

MODULE 5 DATABASES. Content MODULE 5 DATABASES Module Goals Module 5 - Databases, requires candidates to understand some of the basic concepts of databases demonstrate the ability to use a database on a personal computer. Candidates

More information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information

Access Groups. Collect and Store. Text Currency Date/Time. Tables Fields Data Type. You Your Friend Your Parent. Unique information Tutorial A database is a computerized record keeping system used to collect, store, analyze and report electronic information for a variety of purposes. Microsoft Access is a database. There are three

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Add Bullets and Numbers

Add Bullets and Numbers . Lesson 5: Adding Bullets and Numbers, If you have lists of data, you may want to bullet or number them. When using Microsoft Word, bulleting and numbering are easy. The first part of this lesson teaches

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Lesson 4 - Creating a Text Document Using WordPad

Lesson 4 - Creating a Text Document Using WordPad Lesson 4 - Creating a Text Document Using WordPad OBJECTIVES: To learn the basics of word processing programs and to create a document in WordPad from Microsoft Windows. A word processing program is the

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.

Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1. Using Microsoft Office 2003 Intermediate Word Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.2 Summer 2010 Table of Contents Intermediate Microsoft Word 2003...

More information

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet

Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet Anleitungen für Word 2016 als Word-Dokument zum Ausdrucken und fürs Intranet 19 Text and Tabs Tabs (tab stops) help you to write a list, for example, for an order or invoice. Larger spaces should not be

More information

Beginning PowerPoint XP for Windows

Beginning PowerPoint XP for Windows Beginning PowerPoint XP for Windows Tutorial Description This course introduces you to the PowerPoint program basics for creating a simple on-screen presentation. Intended Audience Individuals interested

More information

Access 2013 Introduction to Forms and Reports

Access 2013 Introduction to Forms and Reports Forms Overview You can create forms to present data in a more attractive and easier to use format They can be used for viewing, editing and printing data and in advanced cases, used to automate the database

More information

Setting Up a Paper in APA Style Using Microsoft Word 2007

Setting Up a Paper in APA Style Using Microsoft Word 2007 Setting Up a Paper in APA Style Using Microsoft Word 007 Open Microsoft Word 007. By default Word opens a new blank document. It is easiest if you create all of these settings before you begin your paper.

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 6 AGENDA

More information

MIS Cases: Decision Making With Application Software, Second Edition. Database Glossary

MIS Cases: Decision Making With Application Software, Second Edition. Database Glossary MIS Cases: Decision Making With Application Software, Second Edition Database Glossary This database glossary is designed to accompany MIS Cases: Decision Making With Application Software, Second Edition,

More information

Learn more about Pages, Keynote & Numbers

Learn more about Pages, Keynote & Numbers Learn more about Pages, Keynote & Numbers HCPS Instructional Technology May 2012 Adapted from Apple Help Guides CHAPTER ONE: PAGES Part 1: Get to Know Pages Opening and Creating Documents Opening a Pages

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Outlook 2010 One. Wednesday, August 7, 9-11 am. Agenda:

Outlook 2010 One. Wednesday, August 7, 9-11 am. Agenda: Page 1 Outlook 2010 One Wednesday, August 7, 9-11 am Agenda: Outlook Search Options Working with Attachments Creating a Signature Marking a Message as Read Flag an item for Follow-Up Reply, Reply All &

More information

Using Microsoft Word. Table of Contents

Using Microsoft Word. Table of Contents Using Microsoft Word Table of Contents The Word Screen... 2 Document View Buttons... 2 Selecting Text... 3 Using the Arrow Keys... 3 Using the Mouse... 3 Line Spacing... 4 Paragraph Alignment... 4 Show/Hide

More information

Let s create another simple report from one of our queries available: Author Age query.

Let s create another simple report from one of our queries available: Author Age query. Microsoft Access 6: Reports & Other Useful Functions This can be a very quick way to build a report, especially if you plan to put only a few fields on your report. When you click on the Blank Report button,

More information

Getting Started With Excel

Getting Started With Excel Chapter 1 Getting Started With Excel This chapter will familiarize you with various basic features of Excel. Specific features which you need to solve a problem will be introduced as the need arises. When

More information

Excel Tutorial 1

Excel Tutorial 1 IT٢.we Excel 2003 - Tutorial 1 Spreadsheet Basics Screen Layout Title bar Menu bar Standard Toolbar Other Tools Task Pane Adding and Renaming Worksheets Modifying Worksheets Moving Through Cells Adding

More information

Introduction to Microsoft Office 2007

Introduction to Microsoft Office 2007 Introduction to Microsoft Office 2007 What s New follows: TABS Tabs denote general activity area. There are 7 basic tabs that run across the top. They include: Home, Insert, Page Layout, Review, and View

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

Microsoft Word Introduction

Microsoft Word Introduction Academic Computing Services www.ku.edu/acs Abstract: This document introduces users to basic Microsoft Word 2000 tasks, such as creating a new document, formatting that document, using the toolbars, setting

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

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

Reference Services Division Presents. Microsoft Word 2

Reference Services Division Presents. Microsoft Word 2 Reference Services Division Presents Microsoft Word 2 This handout covers the latest Microsoft Word 2010. This handout includes instructions for the tasks we will be covering in class. Basic Tasks Review

More information

Word 2007 Tables Objectives

Word 2007 Tables Objectives Word 2007 Tables In this lesson you will learn how to create, modify and format tables. You will also learn to use the AutoFormat table option and to sort table rows. Objectives Create a table Modify a

More information

Quick Reference Card Business Objects Toolbar Design Mode

Quick Reference Card Business Objects Toolbar Design Mode Icon Description Open in a new window Pin/Unpin this tab Close this tab File Toolbar New create a new document Open Open a document Select a Folder Select a Document Select Open Save Click the button to

More information

Excel Basics. TJ McKeon

Excel Basics. TJ McKeon Excel Basics TJ McKeon What is Excel? Electronic Spreadsheet in a rows and columns layout Can contain alphabetical and numerical data (text, dates, times, numbers) Allows for easy calculations and mathematical

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 1 Databases and Database Objects: An Introduction Objectives Design a database to satisfy a collection of requirements Describe the features of the Access window Create a

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

Lesson 19 Organizing and Enhancing Worksheets

Lesson 19 Organizing and Enhancing Worksheets Organizing and Enhancing Worksheets Computer Literacy BASICS: A Comprehensive Guide to IC 3, 5 th Edition 1 Objectives Hide, show, and freeze columns and rows. Create, rename, and delete worksheets. Change

More information

Managing Document Properties

Managing Document Properties PROCEDURES LESSON 20: CHANGING CASE AND MANAGING DOCUMENT PROPERTIES Using Uppercase Mode 1 Press the Caps Lock key 2 Type the desired text in all caps Showing Caps Lock on the Status Bar 1 Right-click

More information

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button

button Double-click any tab on the Ribbon to minimize it. To expand, click the Expand the Ribbon button PROCEDURES LESSON 1: CREATING WD DOCUMENTS WITH HEADERS AND FOOTERS Starting Word 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Word 2010 1 Click

More information

Preview. MS Access Tutorial. Data Files Available on

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

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information