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

Size: px
Start display at page:

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

Transcription

1 Microsoft Office 2007 PDF Picture Tutorial Series Databases Tables, Forms, Queries, Lookup Wizard, Relationships August 2010 by Floyd Jay Winters and Julie Manchester SEE GRADING CRITERIA AT THE BOTTOM Database Tables Lookup Wizard Relationships Forms Queries Reports In this project, you will create an Invoice database with the following features: Four tables: Invoice, Invoice Details, Employees, Products. Primary keys, such as such as EmployeeID that link corresponding records in the tables. Default Values and Field Size Limits and Formats Data validation You will use the Form Wizard to create an invoice form You will use the Query Wizard to create a query that calculates price times quantity You then use the result of the query in a report you create using the Report Wizard Background Terms: A Database is a collection of related objects that store, manage, manipulate, and retrieve information. A database can also be referred to as a collection of related tables that are linked by key fields, such as EmployeeID or InvoiceNumber. Database objects are tables, queries, forms, reports, and macros. Relationships are basically links that join tables based on key fields such as EmployeeID or InvoiceNumber. Tables store the data in records (rows) and fields (columns). Queries perform an action with the data in the tables, such as finding certain specific data based on criteria. The results of a query can then serve as a source of data for a report. Forms are used for easily entering, displaying, and editing data. Reports are a printed form of data formatted and organized to your specifications. Macros are actions that you can use to automate tasks. The first form is shown below (a good form has one record on one screen in Columnar layout):

2 The finished report is shown below (a good report shows multiple records in Tabular layout): Step 1: Create the Invoices Database (Go to Top) Start Access Select Blank Database Name the database Invoices.accdb

3 Next, select where the file will be saved. Click the folder icon to the right of the File Name The File New Database dialog box opens. Possible Problem: Unlike Microsoft Word and Excel, you can NOT resave or rename an Access database file while in Access. So pay special attention to what you name your file and specifically what folder or what drive you save it in. If you need to modify the file name or location, you can copy it, move it, or rename it in the Windows Explorer, but not in Access.

4 Browse to the desired folder and click OK The File New Database dialog box closes. Creating Tables (Go to Top) Tables store the actual data in a database. Typically, each set of related data is stored in a separate table. For instance you would have an Employees table for all of your employees and a Products table for all of your products. Click Create The newly created database opens in Table Datasheet View. Click View in the Views group of the Datasheet tab Select Design View

5 The Save As dialog box opens. Type in the Table Name Employees Click OK The Employees table within the Invoices database opens in Design view: By default, Access sets the first field as the Primary Key, names it ID and uses the AutoNumber data type. A Primary key is unique identifying field by which a table can be searched, sorted, or linked to another table. Example: an EmployeeID or ProductID. A Foreign key is a corresponding key field in another table that identifies records that are linked through the primary key. Example: a foreign EmployeeID key field in an Invoices table that links to employee information in the Employee table which has the Primary EmployeeID key field. Change the name of the Primary Key field from ID to EmpID Click in the Data Type column, click the list arrow, and select Text

6 Type in the Description 3 Characters Employees Initials In the EmpID Field Properties, enter 3 for the Field size and > for the Format Enter LastName, FirstName, Address, City, State, Zip, and Degree Assign each the Text data type Text comes up as the default data type for each subsequent field. For the State field, enter the Description: 2 character abbreviation In the State Field Properties, enter 2 for the Field size, > for the Format, and VA for the Default Value After Degree, the next field is MOSCertified and has the Yes/No data type and the

7 description: Microsoft Office Specialist Certified Enter HireDate with the Date/Time data type Enter BaseSalary with the Number data type Enter Phone with the Text data type and the description: Home Phone Enter Comments with the Memo data type Using the steps above create a Products table that includes the following fields: ProductID, ProductName, ProductDescription, and Price. Using the steps above create an Invoice table that includes the following fields: InvoiceID, InvoiceDate, and EmployeeID. Using the steps above create an InvoiceDetails table that includes the following fields: InvoiceID, ProductID, and Quantity. Using the Lookup Wizard (Go to Top) When you create your tables, use the Lookup Wizard for foreign key fields like EmployeeID and ProductID so that dropdowns will allow for quick data entry. In the end you will have a One-to-Many Relationship. There is one unique Primary EmployeeID key field in the Employee table that is related to many foreign EmployeeIDs key fields in the Invoices table. In other words, one employee can have many sales. In table Design View, choose the Lookup Wizard for the Data Type:

8

9

10 Setting Relationships (Go to Top) After you define your tables and set up your Lookup Wizard, you must finish setting up your relationships. Relationships refer to how related tables in a database are linked or joined together by key fields (such as EmployeeID) to avoid data redundancy, to provide for easier data entry, to ensure data consistency, and to avoid potential errors. Choose Database Tools tab > Relationships. Right-click on the line connecting related tables through their key fields to enforce Referential Integrity to make sure there are no Invoice Detail records without matching Invoices (you cannot have children without parents). Possible problem: If there is not line connecting the EmployeeIDs from the Employees table and the Invoices table: drag the EmpID Primary key from the Employees table to the EmployeesID Foreign key in the Invoices table.

11 When done your relationships should look like this, with each many table having a 1-to-Many (1 to ) Relationship with the other tables (1 employee can have many sales): If your Lookup Wizard and 1-to-Many Relationships are set correctly, data entry with your tables becomes much easier and more powerful with dropdowns:

12 Using the steps above use the Lookup Wizard to link the InvoiceDetails table to the Products table through ProductID. Once you have set up your Relationships properly and used the Lookup Wizard to link to related tables it is much easier to create good forms and subforms for data entry. Creating Forms (Go to Top) A Form is used to enter, edit and delete information stored in a table. Forms are more attractive and easier to use than tables. We will build two forms. The first is a basic Employees form. The second is an Invoice form with a Subform (an itemized detail form within a main form). Click More Forms in the Forms group on the Create tab Select Form Wizard If necessary, click the dropdown arrow next to the Tables/Queries box and select the Employees table. Click the [ > ] button to move EmpID, LastName, FirstName, Address, City, State, Zip, Phone, and Comments to the Selected Fields list

13 Click Next Leave Columnar selected and click Next Note: a good form has one record on one screen in Columnar layout Choose a style and click Next Name the form Employees of Your Company Name and click Finish The new form opens in Form view:

14 Building Queries (Go to Top) A Query can be used to find and arrange specific information and do on the fly calculations. We will create two queries. First we will create a simple Employees Query to list only Employee names and addresses. Click Query Wizard in the Other group on the Create tab The New Query dialog box opens:

15 With Simple Query Wizard highlighted, click OK The Simple Query Wizard dialog box opens. If necessary, choose Table: Employees from the drop-down Tables/Queries list Click [ > ] with EmpID highlighted to move it to the Selected Fields list Repeat for LastName, FirstName, Address, City, State, and Zip Click Finish The new Employees query opens in Datasheet view:

16 Click View in the Results group on the Home tab The Employees query opens in Design view: In the Criteria row for State, enter FL Click Run in the group on the Design tab Only records having a State value of FL are included in the results:

17 Now let s create a Query that computes Price times Quantity that we can then use in a Product Sales by Employee Report. Click Query Wizard in the Other group on the Create tab Select Simple Query Wizard Choose Table: Invoices from the drop-down Tables/Queries list With InvoiceID highlighted in the Available Fields list, click the single arrow to move it to the Selected Fields list

18 Select the Products table from the Tables/Queries list Add ProductName and Price to the Selected Fields list From the InvoiceDetails table and add Quantity to the Selected Fields list Click Next The dialog box offers the choice between including every field from every record or a summary with simple calculations. Select Summary Summary Options becomes available. Click Summary Options

19 The Summary Options dialog box opens. Check the Sum box for the Quantity field; then click OK Click Next after the Summary Options dialog box closes Change the title of the query to PriceXQtyQuery Select Modify the query design.

20 Click Finish The query opens in Design view. You can rearrange the tables so the relationship lines are more easily seen and resize the grid columns to show the entire contents: In the Field line of the first empty column of the design grid enter TotalPrice: Price*Quantity and tap Enter Click the Run button in the Results group on the Design tab The query displays in Datasheet view with the newly calculated field:

21 Save and close the query Creating Reports (Go to Top) Reports are used to display the information from a table or the results form a query in the desired field order, showing only the desired fields. Let s create a report based on our PriceXQtyQuery. Select Report Wizard in the Reports group on the Create tab The Report Wizard dialog box opens In the Employees table, add EmpID to the Selected Fields list From the Invoices table, add InvoiceID and InvoiceDate to the Selected Fields list From the new PriceXQtyQuery, add ProductName, Sum of Quantity, and TotalPrice

22 Group level by EmpID Sort by InvoiceDate

23 Click the Summary Options button Check the Sum box for TotalPrice and click OK Choose Stepped layout and Landscape orientation

24 Select a Style (Note: Microsoft Office 2007 has a bug that may push the Grand Total or Sum(TotalPrice) summary off to the far right of the page so that it may not be viewable. If one style does not work try another. It is because of this bug that we must print this report in Landscape instead of Portrait. We can resize the report with and height later.) Name the report Product Sales by Employee, select Modify the report s design, and click Finish The report opens in Design view:

25 The Report Wizard generates a basic report that you can customize for your specific company. (Note the Microsoft Office 2007 bug pushed =Sum(TotalPrice) off to the far right of the page so that it would not be viewable in Portrait view.) In the following steps, you add your company name to the Report Header, rename the Sum of Quantity label, line up the totals, and move the page number. Hover the pointer over the vertical ruler near the bottom of the Report Header and drag the bottom edge of the Report Header to make it big enough for the company name Click and drag the report title down to make room for the company name Possible problem: When you try to click and drag the label, after you click it you cannot drag it, you can only edit the text. Solution: Do not release the mouse button after clicking the label. Click and drag in one step. Click the Label tool in the Controls group on the Design tab Drag a new label above the title

26 Type in your company name and then click in an empty area of the report Click the label to select it Use the tools in the Font group to format the company name In the EmpID Footer, select the Summary for text box and delete it Click TotalPrice in the Detail section Press and hold the [Shift] key and click =Sum(TotalPrice) in the EmpID footer and Report footer The three total fields are highlighted Click the Align Right tool in the Control Alignment group on the Arrange tab

27 The three total fields are now aligned on their right edge. Open the Property Sheet, if necessary, by clicking Property Sheet in the Tools group on the Design tab With the three total fields still highlighted, set the Format to Currency

28 In the Properties Sheet, adjust the Page Number field in the Page Footer and change its Width and Left properties to the best settings. Open the report in Report View (Home tab > View > Report View) Note 1: A good report shows multiple records on one page in Tabular layout. Note 2: Notice that it displays both Subtotals for each employee and a Grand Total for everyone. Note 3: Notice the spaces in the headers, as in Invoice Date and Product Name (instead of InvoiceDate and ProductName). These spaces are added in Design View. Also in Design View the column widths were adjusted to give the best presentation. Access Tables, Forms, Queries, Reports Grade Sheet Criteria Build a business database: Link Multiple Tables into 1 Relational Database relevant to YOUR own business.. Continue to follow your overall business design theme as much as possible. Also see:

29 Relationships are set by linking tables though Key Fields. When tables are linked or related it means that you only enter data like LastName, FirstName and Address one time, perhaps in the Employee table. If you link the Employee table to another table by its key field, such as EmployeeID, you can obtain LastName, FirstName and Address without retyping this data saving storage space, saving time, avoiding redundancy, and reducing possible errors. Note 1: Relationships: The Primary Key is usually the first field listed in a table. Ex: EmployeeID should be the Primary field and the first field listed in the Employees table. Ex: EmployeeID may be Foreign key in the Invoices table. As a rule, there should only be one Primary key per table. Normally, do not link a Primary Key to a Primary Key. Link a Primary Key to a Foreign Key (no key symbol). Other than the Key fields, you should not have any other field listed in multiple tables. Avoid Redundancy. Ex: If Price is in the Products table, it should not be in the Invoices table. The Invoice table gets Price from its relationship to the Products table through ProductID. If your Relationship window shows a duplicate of the same table (Ex: there is an Employees and Employees_1): Right click on the Relationship line of the duplicate table (Ex: Employees_1) and click Delete. Then select the duplicate table (Ex: Employees_1) and Delete the Table. (You may have to close opened tables first.) If the Primary key for ProductNumber is a Text data type in the Products table, then the foreign key for ProductNumber must also be a Text data type in the linked Orders table. (Notice I wrote ProductNumber is Text because it may be: IBM1234 which is really alphanumeric.) Also note that you can type "Relationships" into the help box and get a lot of help on this topic including Troubleshooting. Note2: In form Design View, to Disassociate Labels and their associated TextBoxes or a collection of Labels and TextBoxes (the Form Wizard will associate a whole collection) highlight the Label(s) and TextBox(es) > Right-click > Layout > Remove. This will allow you to independently move and resize Labels and/or TextBoxes. Note 3: Reduce File Size: I. Office Button > [Access Options] button > Current Database, check Compact on close. II. Make sure images are small in size. A typical photo from a digital camera can be 8 x 11 or even poster size and possibly 3 MB. So for some images you must first load them in a Paint program and then reduce their file size. (Most paint programs have a resize option, ex: Image > Resize). Sometimes it is better to delete every picture and image in your database. (If you have to temporarily delete the entire picture field.) Then check the file size. If you see it is much smaller, then you have confirmed the problem is your images. Now you can add smaller images back in. If necessary, just add a few images for the first few records. Also note if you are using Office 2007 use the Attachment data type to add pictures, NOT OLE object. Microsoft had a bug with its OLE pictures which tremendously increased the file size. III. Make sure you have no spaces or characters in the file name. If I.-III. do not work, try to send as a.zip file for a small penalty. Also see: Quick Pictorial Tutorials: Create Table Create Query Create Form Create Report Set Relationships Sample Relation Competency Steps Points Build a Clients Table. Include the following In Office 2007 create a Table in fields and any desired fields: Design View for your ongoing business project EmployeeIS: Primary Key 1. Start Access (When done, the primary key will have a key 2. Click Blank Database icon next to its field name.) 3. Enter a File Name and click the LastName: Text [Create] button - pay attention to the FirstName: Text Path! (You can click the folder icon to browse to the desired path). Give the Address1: Text file a logical name like BestInventory Address2: Text not Database1. City: Text 4. Click Create Tab State: Lookup Wizard. See the General tab 5. Click Table Design button Table1 for Employees: 10pts

30 to set the Field Size to 2 and Format to > (uppercase) and Default to FL Zip: Text Phone: Text Hyperlink A Date field such as hire or birth date A Currency or Number field to be used in a calculation later, ex: MonthlyDues A Yes/No field such as Graduate A Memo field such as Notes Create at least two additional tables linked to your main Table: Suggestion Invoices linked to Invoice Details; Employees or Products or Customers linked to Invoices Set your Relationships (link your tables): Primary Key linked (related) to Foreign Key. Ex: Products.ProductID (table.field with Primary key) linked to Invoices.ProductID (Foreign key) The Primary key should be 1st field in table. Use the Form Wizard to create a simple but attractive Form in Columnar layout. If you want to use dropdowns linking to another table see: LookupWizard.doc Format, move, and align all the Form controls so that everything is lined up and attractive. Examples: Headers like Invoice Date and ProductName should have spaces in them instead of InvoiceDate and ProductName. These spaces are added in Design View. Also in Design View the column widths should be adjusted to give the best presentation. Use the Form Wizard to create a simple but attractive Form in Columnar layout. If you want to use dropdowns linking to another table see: LookupWizard.doc 6. Enter Field Names in column 1 & Data Types in column 2 in the table design window. 7. In the Field Properties Window at the bottom of the screen, set the appropriate field sizes, formats, and default values. 8. Close the table design window and Save when Prompted 9. Open the table that you just created. (Home > View > Datasheet view). The field names make up the header on the top row. You can now start entering the actual data in the second, third, fourth rows. Give the table a logical name like Clients, Employees, and Products, not Table1, Table2, and Table3. (Give it a good name up front or right-click an object to rename it.) Database Tools tab > Relationships Add tables (if necessary) and drag Primary key ( ) to Foreign key, and set Referential Integrity See figure: Relationships Create tab > More Forms > Form Wizard A good form has one record on one screen in Columnar layout Select a control > Use Format tab Create tab > More Forms > Form Wizard A good form has one record on one screen in Columnar layout 2 Other related Tables: 20pts Relationships: 10pts Good Form1 for Employees with employee pictures and addresses 10pts Good Form2 for Invoices 10pts Use the Report Wizard to create a simple Sorted Report based on the Table no Totals. Suggestion: Employee Addresses or Product Description. Start the report name with a 1. See: Sample Report and Terms This report will show multiple records on one page in Tabular layout. To see a simple 2 table sample with relationships and a query see: RelationshipQueryDemo.accdb This report shows multiple records on one page in Tabular layout. All Reports should have Title (ex: Company Name) Subtitle (ex: Pay Roll Report), and Date. All reports should be neatly lined up and appropriately justified LastName in Detail header should appear as Last Name. Delete any practice or nonworking reports, forms, queries Report 1: 10pts

31 Create a Query in Design View that uses multiple tables - such as Invoices and Products, that Calculates and Formats Totals such as.: SubTotal: [Price]*[Qty] or something similar. or/and Tax: [Price]*[Qty] *.07 or/and LineTotal: SubTotal + Tax Or LineTotal: [Price]*[Qty] + [Price]*[Qty] *.07 To Format a field for currency or decimals: Right-click, choose Properties, choose Format See: Sample Report with SubTotals Create a second Report based on the Query above that uses multiple tables and displays Line Totals, Group Subtotals, and a Grand Total. Such as a Line Total for one item, Group Totals showing sales for each employee, and a Grand Total for all employee. Start the report name with a 2. Use appropriate and consistent Formats for all columns. See:..\SamplesDataBases\ReportGroupedSubtotals.doc Access_Images\Access_Report_GroupedSubtotals.png All Reports should have Title (ex: Company Name) and Subtitle (ex: Pay Roll Report) and Date. To get the Group Totals to work you must have a product that is sold multiple times or a sales person that makes multiple sales Then sort on that product field or salesperson field. Finally, select that product field or salesperson field to Group by when you run the Report Wizard. If you do everything OK, then you can click the [Summary] button with the Report Wizard. See Sample: 0ClassFolders/1570Office/SamplesPDF/DB_Rpt-Totals_Scott.pdf Do not have any forms queries, reports that do not work. Delete any extra forms. Right-click and rename any non-descriptive tables, forms queries, or reports Note: in Microsoft Access, all the tables, forms and reports are stored in one.accdb file. This is the same file that you started with in your first Access assignment. 1. Click Create Tab 2. Click Query Design Button 3. In the Show Table dialog box: Select 1st Table (such as Invoices) and click [Add.]. Select 2nd Table (such as Products) and click [Add.]. to produce a Query for a Report like Date Product Price Qty Subtotal Tax Total To see a simple 2 table sample with relationships and a query see: RelationshipQueryDemo.accdb 1. Click Create Tab 2. Click Report Wizard 3. In the Tables/Queries dialog box: Select your Query and select the fields [>>], [Next]. 4. If necessary, select the Field you want to group on for Subtotals [Next] 5. If your query is based on related tables that have a calculation, there will be a [Summary] button that will allow you to do group and Grand Totals. (Or Format tab > Totals button > Sum) This report will show multiple records on one page in Tabular layout. Make sure all Report columns are properly sized and the headers are appropriately aligned (Point to column heading boundary and use double- Headed arrow to size) Give the Report a logical name like Employee Sales not Report1. (Give it a good name up front or right-click an object to rename it.) - Query1 is not a descriptive or acceptable name. Do not have extra vertical or extra horizontal space in your forms and reports. Go into design view and make everything look attractive When you open Invoices.accdb, Access creates a temporary Record Locking file called Invoices.laccdb (L is for Locked). Query with a Calculation: 10pts Report 2: 10pts Group & Grand Totals: 5 (Hint Sort first) Appropriate and consistent Formats Everything is neatly aligned, labeled: 10pts Total 100

32 (Do not send me the laccdb file : -)

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

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

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

MS Access Let s begin by looking at the toolbar and menu of Access.

MS Access Let s begin by looking at the toolbar and menu of Access. MS Access 2003 Access is a database program that allows you to store, retrieve, analyze, and print information. Individuals use databases for various purposes. Businesses use databases to manage customer

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

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

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

Microsoft Access 2010

Microsoft Access 2010 2013\2014 Microsoft Access 2010 Tamer Farkouh M i c r o s o f t A c c e s s 2 0 1 0 P a g e 1 Definitions Microsoft Access 2010 What is a database? A database is defined as an organized collection of data

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

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

MS-Access : Objective Questions (MCQs) Set 1

MS-Access : Objective Questions (MCQs) Set 1 1 MS-Access : Objective Questions (MCQs) Set 1 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View 2. Which Of The Following Creates A

More information

Microsoft Access 2016 Intro to Forms and Reports

Microsoft Access 2016 Intro to Forms and Reports Microsoft Access 2016 Intro to Forms and Reports training@health.ufl.edu Access 2016: Intro to Forms and Reports 2.0 hours Topics include using the AutoForm/AutoReport tool, and the Form and Report Wizards.

More information

Creating and using reports

Creating and using reports L E S S O N 6 Creating and using reports Lesson objectives To present data from your tables, you will need to generate reports. To create and use reports, you will: a b Create a standard report with data

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

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

Microsoft Office. Access Tutorial Part 2

Microsoft Office. Access Tutorial Part 2 Microsoft Office Access 2013 Tutorial Part 2 An Introduction to Access 2013 Creating Reports and Forms for Tables Author Sandra Dyke https://sites.google.com/site/sandrascourses/ This work is licensed

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

Microsoft Office Specialist Access 2016

Microsoft Office Specialist Access 2016 77-730 Microsoft Office Specialist Access 201 For coverage of all objectives, please utilize Shelly Cashman Series Office 35 & Access 201 Comprehensive Domain Obj Number Objective text Module Pages: Topic

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

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

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

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

USING MICROSOFT ACCESS 2013 Guided Project 7-1

USING MICROSOFT ACCESS 2013 Guided Project 7-1 Guided Project 7-1 For this project, you enhance the functionality of a database for a friend s music collection. You use Design view to create a main form and a subform, and customize the form to add

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

Learning About Relational Database By using Microsoft Access 2010

Learning About Relational Database By using Microsoft Access 2010 The Business School BUACC5937: Information Systems Design and Development for Accountants Mégabite Restaurant e-commerce System Invoice Learning About Relational Database By using Microsoft Access 2010

More information

Tutorial 1: Introduction to Tables, Forms, and Menus

Tutorial 1: Introduction to Tables, Forms, and Menus Tutorial 1: Introduction to Tables, Forms, and Menus This tutorial introduces you to or refreshes your skills using Microsoft Access. In this tutorial, you will implement a simple order entry system for

More information

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database :

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database : Highline College - Busn 216: Computer Applications for Business (Fun and Power with Computers) Office 2016 Video #39: Access 2016: Create Database, Import Excel, Create Tables & Forms, Build Relationships

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

Word Module 5: Creating and Formatting Tables

Word Module 5: Creating and Formatting Tables Illustrated Microsoft Office 365 and Office 2016 Intermediate 1st Edition Beskeen Test Bank Full Download: http://testbanklive.com/download/illustrated-microsoft-office-365-and-office-2016-intermediate-1st-edition-beskee

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

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

COMM 391. Objectives. Introduction to Microsoft Access. What is in an Access database file? Introduction to Microsoft Access 2010

COMM 391. Objectives. Introduction to Microsoft Access. What is in an Access database file? Introduction to Microsoft Access 2010 Objectives COMM 391 Introduction to Management Information Systems Introduction to Microsoft Access 2010 Describe the major objects in Access database. Define field, record, table and database. Navigate

More information

Access: Using Forms for Data Entry and Editing

Access: Using Forms for Data Entry and Editing Access: Using Forms for Data Entry and Editing Viewing and Entering Data with Forms A form is the most convenient layout for entering, changing, and viewing records from a database table or query and are

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

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

Microsoft Excel 2013/2016 Pivot Tables

Microsoft Excel 2013/2016 Pivot Tables Microsoft Excel 2013/2016 Pivot Tables Creating PivotTables PivotTables are powerful data analysis tools. They let you summarize data in various ways and instantly change the view you use. A PivotTable

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

Microsoft Access Description

Microsoft Access Description Go To Page.. Go!! Microsoft Word Microsoft PowerPoint Microsoft Office Main Microsoft Excel Microsoft Publisher Introduction into Microsoft Access Starting Up Microsoft Access Creating New, and Opening

More information

Intermediate Microsoft Access 2010

Intermediate Microsoft Access 2010 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a Switchboard

More information

MS Office 2016 Excel Pivot Tables - notes

MS Office 2016 Excel Pivot Tables - notes Introduction Why You Should Use a Pivot Table: Organize your data by aggregating the rows into interesting and useful views. Calculate and sum data quickly. Great for finding typos. Create a Pivot Table

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam Objectives Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-605) and provides references to corresponding

More information

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only)

Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) ECDL Module 5 WORKBOOK Databases Microsoft Access XP Edition for ECDL Syllabus 4.5 (UK only) PAGE 2 - ECDL MODULE 5 (OFFICE XP) - WORKBOOK 1995-2007 Cheltenham Courseware Ltd. All trademarks acknowledged.

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

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

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

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

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

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

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

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

Microsoft Access XP (2002) Reports

Microsoft Access XP (2002) Reports Microsoft Access XP (2002) Reports AutoReports Report Wizards Manually Design a Report Table Relations Multitable Reports Mailing Labels Mail Merge with MS Word Table of Contents INTRODUCTION TO REPORTS...

More information

Excel 2013 Workshop. Prepared by

Excel 2013 Workshop. Prepared by Excel 2013 Workshop Prepared by Joan Weeks Computer Labs Manager & Madeline Davis Computer Labs Assistant Department of Library and Information Science June 2014 Excel 2013: Fundamentals Course Description

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

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

Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only)

Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only) ECDL Module 5 WORKBOOK Databases Microsoft Access 2003 Edition for ECDL Syllabus 4.5 (UK only) PAGE 2 - ECDL MODULE 5 (OFFICE 2003) - WORKBOOK 1995-2007 Cheltenham Courseware Ltd. All trademarks acknowledged.

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

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Forms & Reports 2 Forms 2 Using Auto Forms 2 Exercise 1. Creating a Datasheet Auto Form 3 Exercise 2. Creating a Tabular Auto Form 4 Exercise 3. Creating

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

Chapter 5: Hierarchical Form Lab

Chapter 5: Hierarchical Form Lab Chapter 5: Hierarchical Form Lab Learning Objectives This chapter demonstrates Access 2013 features for hierarchical forms that are more complex than the single table forms you developed in Chapter 4.

More information

Designer TM for Microsoft Access

Designer TM for Microsoft Access Designer TM for Microsoft Access Application Guide 1.7.2018 This document is copyright 2009-2018 OpenGate Software. The information contained in this document is subject to change without notice. If you

More information

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question.

MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. Exam Name MULTIPLE CHOICE. Choose the one alternative that best completes the statement or answers the question. 1) The purpose of a form is to: A) simplify the entry of data into a table. B) display the

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

Tutorial 2. Building a Database and Defining Table Relationships

Tutorial 2. Building a Database and Defining Table Relationships Tutorial 2 Building a Database and Defining Table Relationships Microsoft Access 2010 Objectives Learn the guidelines for designing databases and setting field properties Modify the format of a field in

More information

Creating a Database Using Access 2003 for Windows 2000/Me/2003

Creating a Database Using Access 2003 for Windows 2000/Me/2003 Creating a Database Using Access 2003 for Windows 2000/Me/2003 Created: 25 September 2003 Starting Access 2003 Double click on the Access 2003 icon on the Windows desktop (see right), or click-on the Start

More information

Les s on Objectives. Student Files Us ed. Student Files Crea ted

Les s on Objectives. Student Files Us ed. Student Files Crea ted Lesson 10 - Pivot Tables 103 Lesson 10 P ivot T ables Les s on Topics Creating a Pivot Table Exercise: Creating a Balance Summary Formatting a Pivot Table Creating a Calculated Field Les s on Objectives

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

Unit 11.Introduction to Form and Report

Unit 11.Introduction to Form and Report Introduction to Form Unit 11.Introduction to Form and Report Introduction: Databases are made to be used. Access provides an easy way to enter data into Access database tables with forms. Forms can also

More information

Microsoft Access 2007 Tutorial. Creating a Database using Access 2007

Microsoft Access 2007 Tutorial. Creating a Database using Access 2007 Creating a Database using Access 2007 Created: 12 December 2006 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left

More information

Creating and Running a Report

Creating and Running a Report Creating and Running a Report Reports are similar to queries in that they retrieve data from one or more tables and display the records. Unlike queries, however, reports add formatting to the output including

More information

Designing Forms in Access

Designing Forms in Access Designing Forms in Access This document provides basic techniques for designing, creating, and using forms in Microsoft Access. Opening Comments about Forms A form is a database object that you can use

More information

The finished sample project is shown in the figure below: Fig. 1. Your project will contain your own data. SEE GRADING CRITERIA

The finished sample project is shown in the figure below: Fig. 1. Your project will contain your own data. SEE GRADING CRITERIA Microsoft Office 2007/2010 PDF Picture Tutorial Series Spreadsheets Payroll with Overtime, Protection, and Data Validation August 2010 by Floyd Jay Winters and Julie Manchester winterf@scf.edu SEE GRADING

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

More information

A. Open Access and create a new database named Lab7_yourlastname.accdb.

A. Open Access and create a new database named Lab7_yourlastname.accdb. Create a Database Table Lab 7, Step 1 A. Open Access and create a new database named Lab7_yourlastname.accdb. Access the ilabs and open the Office 2010 application folder. Select Access 2010: The Access

More information

Access 2000 MICROSOFT. Level One Basic. Version N2

Access 2000 MICROSOFT. Level One Basic. Version N2 MICROSOFT Access 2000 Level One Basic Version N2 ICT Training First Floor, Victoria House Queen Alexandra Hospital Cosham PO6 3LY Tel: 023 9228 6000 ext: 5867 Email: ICT.Training@porthosp.nhs.uk Website:

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

MICROSOFT OFFICE ACCESS 2003 PRESENTING & MANAGING DATA

MICROSOFT OFFICE ACCESS 2003 PRESENTING & MANAGING DATA CHAPTER 4 MICROSOFT OFFICE ACCESS 2003 PRESENTING & MANAGING DATA CHAPTER OUTLINE 4.1 Creating a Simple Form 4.2 Creating a Simple Report 4.3 Generating a Mailing Labels Report 4.4 Managing Database Objects

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

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

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

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

Microsoft Access XP (2002) - Forms. Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations

Microsoft Access XP (2002) - Forms. Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations Microsoft Access XP (2002) - Forms Navigation Wizards Custom Forms Combo Boxes Calculations in Forms Pictures Multitable Input Summary Operations Table of Contents Exercise File Needed... 3 INTRODUCTION

More information

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

SEE GRADING CRITERIA AT THE BOTTOM

SEE GRADING CRITERIA AT THE BOTTOM Microsoft Office 2007 PDF Picture Tutorial Series Spreadsheets Payroll with Overtime, Protection, and Data Validation August 2010 by Floyd Jay Winters and Julie Manchester winterf@mccfl.edu SEE GRADING

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

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

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5

ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 Table of Contents ABOUT THIS COURSE... 3 ABOUT THIS MANUAL... 4 LESSON 1: MANAGING LISTS... 5 TOPIC 1A: SORT A LIST... 6 Sort a list in A-Z or Z-A Order... 6 TOPIC 1B: RENUMBER A LIST... 7 Renumber a List

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

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

Microsoft Access 2002 for Windows

Microsoft Access 2002 for Windows Microsoft Access 2002 for Windows Handout: 2 Academic Computing Support Information Technology Services Tennessee Technological University February 2004 1. Opening the File In the PC labs, from the Start

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

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

Introduction to Excel

Introduction to Excel Office Button, Tabs and Ribbons Office Button The File menu selection located in the upper left corner in previous versions of Excel has been replaced with the Office Button in Excel 2007. Clicking on

More information

Index. B backing up 76 7

Index. B backing up 76 7 A Access, other DBMSs and 9 Action queries 121, 125 defined 125 address book 16, 34 age calculations 60 answer table 36 editing data in 147 8 field names 294 multi-table queries 294 queries and 155 queries

More information

Database Design Lab: MS Access Queries

Database Design Lab: MS Access Queries Database Design Lab: MS Access Queries 1. Download lab6.accdb and rename it to lab7.accdb. 2. Create a simple query named qryauthor that has a Name attribute (i.e. Firstname Lastname ). a) Open lab6.accdb.

More information

Microsoft Access Lesson 3: Creating Reports

Microsoft Access Lesson 3: Creating Reports Microsoft Access Lesson 3: Creating Reports In the previous lesson the information you retrieved from a database always was in the form of a table. This may be all you need if you are the only person using

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

IT2.weebly.com Applied ICT 9713

IT2.weebly.com Applied ICT 9713 Chapter 11 Database and charts You already know how to o define database record structures o enter data into a database o select subsets of data within a database o sort data within a database o produce

More information

Quick Reference Summary

Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary Microsoft Excel 2010 Quick Reference Summary 3-D Chart, Rotate EX 462 3-D Rotation button (Chart Tools Layout tab Background, change rotation (Format Chart

More information

Tutorial 2: Queries and Reports

Tutorial 2: Queries and Reports Tutorial 2: Queries and Reports This tutorial covers construction of queries using Microsoft Access query by example (QBE) tool and report writer. In this tutorial, you will extend the Infinity Computers

More information