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

Size: px
Start display at page:

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

Transcription

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

2 AGENDA 19. Advanced Form Controls 20. Text Box Control 21. Combo/List Box Control

3 Advanced Form Controls 19.

4 19.1 CREATING LAYOUTS FOR CONTROLS 249 Layouts are formatting containers to group controls in a specific fashion. Layouts are guides that align your controls horizontally and vertically to give your form a uniform appearance. Overview of Control Layouts There are two different layouts: Tabular and Stacked. A tabular layout groups controls in a horizontal manner which is useful for continuous forms (multiple records). A stacked layout is a vertical layout which groups controls in a column.

5 19.1 CREATING LAYOUTS FOR CONTROLS 250 Within these two main formats, you can split or merge cells to customize the layout to better suit your controls. A tabular layout moves the control s label in the header section of a form or report, very much like a spreadsheet. At this point, the labels are severed from the controls. A stacked layout moves the labels to the left with the data controls to the right. Stacked layouts are always contained within a single section on the form or report. Working with Control Layouts To create a tabular layout, simply select the controls and click on the Tabular button in the Form Design Tools ribbon, Arrange tab. You can also create multiple layouts in one form.

6 19.1 CREATING LAYOUTS FOR CONTROLS 251 To move controls from one layout into the other simply drag a control over to the other layout. To remove a control from a layout, simply select the control and click on Remove in the Table group of the Arrange tab. Split or Merge Cells in a Control Layout Like a table in a word processing document, a layout is made up of cells that are arranged in rows and columns. Each cell can contain one control, such as a text box, a label, or a command button. You can split one cell horizontally or vertically to create two cells, or you can merge multiple cells together to create one large cell that spans multiple rows or columns in the layout.

7 19.1 CREATING LAYOUTS FOR CONTROLS 252 Follow these steps to merge cells: 1. Select the first cell that you want to merge. 2. Hold down the SHIFT key and select the other cells that you want to merge. 3. On the Arrange tab, in the Merge / Split group, click Merge.

8 19.2 ANCHORING CONTROLS 253 Another new feature since Access 2007 is the Anchor feature. This feature allows controls to grow or shrink as the form window is resized.

9 19.2 ANCHORING CONTROLS 254

10 19.2 ANCHORING CONTROLS 255

11 19.2 ANCHORING CONTROLS 256 Special considerations must be given when you use anchoring in control layouts. Control layouts are table-like grids that group multiple controls together so that they are automatically sized and aligned. You can specify the anchoring for only one control in each layout.

12 19.3 BOUND, UNBOUND, CALCULATED CONTROLS 257 There are three different types of controls, bound, unbound and calculated. The customerid field on the form frm_example5_2 is a bound control. It is linked or bound to the CustomerID field in the customer table. It displays the information stored in the database for that particular field on the form. The connection from the control to the database is a two-step process.

13 19.3 BOUND, UNBOUND, CALCULATED CONTROLS 258 First of all, the form itself must be bound to some data source, either a table, a query, or a SQL statement stored in its RecordSource property. Based on the data source, the ControlSource property of a control links a control to a specific field. To identify whether a control is bound, unbound or calculated select the data tab of the property sheet. Controls which do not have an entry in the Control Source property are unbound controls.

14 19.3 BOUND, UNBOUND, CALCULATED CONTROLS 259 Unbound data bearing controls are used for entering information on a form, which in turn, is then used for calculations or criteria expressions. Unbound controls are useful as temporary memory spaces on the form to hold values. Non data bearing controls are by definition unbound since they cannot display any database information. The following controls are unbound controls by design: Labels Lines, Rectangles Command buttons. Image, Unbound Object Tab Control

15 19.3 BOUND, UNBOUND, CALCULATED CONTROLS 260 A control is a calculated control if the ControlSource property contains an expression composed of database fields or functions.

16 19.3 BOUND, UNBOUND, CALCULATED CONTROLS 261 When you do not type the equal sign in front of the Date() function inside the ControlSource property of an unbound text box control, you will notice a small green triangle in the upper left corner of the text box when you leave the control. This is a feature called error checking. When you select the control again, you will see the smart tag symbol, selecting it opens a drop-down list with an explanation of the error and other options. Configure in Access Options.

17 Text Box Control 20.

18 20.1 OVERVIEW OF THE TEXT BOX CONTROL 262 Text box controls are the most used controls on forms and reports. Text box controls are compound controls, when created, a label control is automatically attached to the text box control. Text box controls can be used to display almost any data from the database. Besides ShortText and LongText fields, all number fields and date/time fields can be used as a source for a text box control. Hyperlink, Currency, Autonumber, and Yes/No fields are also suitable for text box controls. Furthermore, text box controls are used as unbound controls as well as calculated controls.

19 20.2 CREATING TEXT BOX CONTROLS 263 Text box controls can be created in two different ways. First, using the Controls group in the Design tab of the Form Design Tools ribbon and clicking on the text box control button. The second method entails using the field list button in the Tools group and dragging the field onto the form. Follow these steps to create a bound text box using the field list button located in the toolbar: 1. Open a form in design view. 2. Click on the field list button in the Tools tab, the field list is now displayed as a floating window in design view. 3. Select a field or multiple fields ([Shift] or [Ctrl] click) and drag the selected fields onto the form. 4. Close the field list window.

20 20.2 CREATING TEXT BOX CONTROLS 264 To create a text box control using the control section in the Ribbon: 1. Click on the Form Design Tools ribbon, then the Design tab. 2. Click on the text box control button (do not hold the mouse button) in the controls group. 3. Move the mouse onto the form in design view. Note the mouse pointer shape consists of a thin cross with a text box control icon attached. 4. Drag a rectangle on the form to create the text box control. 5. To bind the control, display its property sheet, and select a field in the ControlSource property from the underlying data source. Using the field list is the preferable way to create bound controls on forms and reports for two major reasons: Label controls either display the field name or the caption property of the field. The text box control inherits some property settings from the underlying table or query.

21 20.2 CREATING TEXT BOX CONTROLS 265 These are the properties inherited from the underlying table or query: Format Decimal Places Input Mask Status Bar Text (from Description property) Caption

22 20.2 CREATING TEXT BOX CONTROLS 266 The DefaultValue, ValidationRule, and ValidationText properties are not inherited by controls in forms. When dragging a field of data type LongText from the field list onto the form, the Text Box control is automatically sized wider and taller to visually indicate that the field is a LongText field.

23 20.3 CALCULATED TEXT BOX CONTROLS 267 To create a calculated control, click the appropriate control on the toolbox and place it onto the form. Then display the properties, select the data tab, and enter an expression in the Control Source property. IMPORTANT: Precede the expression with an equal sign(=). When using derived or calculated controls on your form, you have to understand how MS Access uses references on a form. Access first searches the form object for a reference (example [City], if it cannot find it, then it goes to the underlying data. This can lead to confusion, therefore, name controls using prefixes.

24 20.3 CALCULATED TEXT BOX CONTROLS 268

25 20.4 TEXT BOX CONTROL PROPERTIES 269 Each control on a form has its own properties. Besides the overall form properties and the individual section properties (Form header, detail section, Form footer), all controls have properties. Text Box Format Properties Contains some field properties which can be overridden at the form level.

26 20.4 TEXT BOX CONTROL PROPERTIES 270

27 20.4 TEXT BOX CONTROL PROPERTIES 271

28 20.4 TEXT BOX CONTROL PROPERTIES 272

29 20.4 TEXT BOX CONTROL PROPERTIES 273

30 20.4 TEXT BOX CONTROL PROPERTIES 274

31 20.4 TEXT BOX CONTROL PROPERTIES 275 Text Box Data Properties Properties that affect its data binding mechanism plus overriding certain field-level properties.

32 20.4 TEXT BOX CONTROL PROPERTIES 276

33 20.4 TEXT BOX CONTROL PROPERTIES 277 Text Box Event Properties Event properties are used to link macros or VBA code to respond to an event. There are form-level, section-level, and control-level events. At the control level the most important events are the Update events (Before, After, Dirty, Change, Undo) and the focus events( Enter, Got Focus, Lost Focus, Exit).

34 20.4 TEXT BOX CONTROL PROPERTIES 278 Text Box Other Properties Like with form properties, the Other tab contains some miscellaneous properties.

35 20.4 TEXT BOX CONTROL PROPERTIES 279

36 20.4 TEXT BOX CONTROL PROPERTIES 280

37 20.4 TEXT BOX CONTROL PROPERTIES 281 Setting Tab Order Access sets the tab order for the controls in the order in which you place the controls on the form. If you want to change the tab order that Access created, you can set a different tab order. In Form design, select the Detail area (or any control in the Detail area), and then click the Tab Order button in the Tools group on the Design tab to open the Tab Order dialog box.

38 20.4 TEXT BOX CONTROL PROPERTIES 282

39 20.4 TEXT BOX CONTROL PROPERTIES 283 Setting Properties for Multiple Controls To change the properties of several controls at once, follow these steps: 1. Select the desired controls. 2. Display the property sheet. 3. Change the properties. The Selection Type of the property sheet reads Multiple Selection since it displays properties of several controls at once. Only displays properties that selected controls have in common.

40 20.4 TEXT BOX CONTROL PROPERTIES 284 Setting Default Properties To view the default properties of a control, follow these steps: 1. Select a control in Form design, for example a text box. 2. In the Design tab of the Form Design Tools ribbon, select the text box control. 3. The default properties are displayed in the property sheet. 4. Note that it reads in the Selection Type: Default Text Box (for a text box, for example). To change some or all default properties for a given control: 1. Create a control type on a form for which you want to set the default properties. 2. Change property settings as desired. 3. To save these settings, click on Set Control Defaults in the Controls group of the Design tab.

41 Combo/List Box Controls 21.

42 21.1 OVERVIEW OF LIST/COMBO BOX CONTROLS 285 The List and Combo box control are special controls in that they can display data from other tables or queries. These are the only two controls with a RowSource property similar to the form s RecordSource property. The data for a List or Combo Box control can be derived from a table or query, additionally the data can be also stored in the control itself. The main differences between the List Box and the Combo Box: A List Box control can display multiple rows and columns at all times, whereas a combo box displays one row and one column at all times. Only when you click on the drop-down arrow, multiple rows/columns are displayed. A List box control is limited to the values based on the underlying data source, whereas a combo box is not (LimitToList property). The List Box control allows for a multiple-selection feature (more than one row can be selected), whereas the Combo box control only allows for one row to be selected. However, to take advantage of this feature, the List box must be unbound and macros and/or VBA code must utilized.

43 21.2 NAVIGATIONAL COMBO/LIST BOXES 286 A combo or list box control may replace the navigation buttons at the bottom of the form. The built-in wizards allow you to create a combo or list box control to select records of the underlying form in order to navigate to the selected record. The first two options enable data lookups whereas the last option is used for building a navigational combo/list box control.

44 21.2 NAVIGATIONAL COMBO/LIST BOXES 287

45 21.2 NAVIGATIONAL COMBO/LIST BOXES 288

46 21.3 LOOKUP COMBO/LIST BOXES 289 The most useful feature of the Combo/List box control is its ability to display data from a data source other than the underlying data source on the form. Looking up data is the most common use of Combo/List box controls.

47 21.3 LOOKUP COMBO/LIST BOXES 290

48 21.3 LOOKUP COMBO/LIST BOXES 291

49 21.4 COMBO/LIST BOX PROPERTIES 292 The new properties of the List and Combo box controls are listed and explained in this chapter. Combo/List Box Format Properties

50 21.4 COMBO/LIST BOX PROPERTIES 293 Set the List Width to at least the sum of the column widths, otherwise you might get horizontal scrollbars in your drop-down list. In the SQL statement for the RowSource property, make sure to include the key column as the first column as this column will be stored in the control by default when a row is selected in the drop-down list. The Bound Column property is set to 1 by default, which means the first column is used to store in the control.

51 21.4 COMBO/LIST BOX PROPERTIES 294

52 21.4 COMBO/LIST BOX PROPERTIES 295 Combo/List Box Data Properties

53 21.4 COMBO/LIST BOX PROPERTIES 296

54 21.4 COMBO/LIST BOX PROPERTIES 297 Edit List Items Combo/List Box Event Properties An additional event exist: NotInList. Combo/List Box Other Properties

55 21.4 COMBO/LIST BOX PROPERTIES 298

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

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

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi

MICROSOFT EXCEL BIS 202. Lesson 1. Prepared By: Amna Alshurooqi Hajar Alshurooqi MICROSOFT EXCEL Prepared By: Amna Alshurooqi Hajar Alshurooqi Lesson 1 BIS 202 1. INTRODUCTION Microsoft Excel is a spreadsheet application used to perform financial calculations, statistical analysis,

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

More information

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4)

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Section 3 AGENDA

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

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

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

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

Tutorial 7 Creating Custom Reports

Tutorial 7 Creating Custom Reports Tutorial 7 Creating Custom Reports Report Concepts An object you use to view and print records in a custom layout Reports give more control over how data is displayed and greater flexibility in presenting

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

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

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

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

Nutzen Sie die Dettmer-Seminarunterlagen für Access bei einmaligem Kauf über Jahre hinaus für Ihre eigenen Schulungen

Nutzen Sie die Dettmer-Seminarunterlagen für Access bei einmaligem Kauf über Jahre hinaus für Ihre eigenen Schulungen Nutzen Sie die Dettmer-Seminarunterlagen für Access bei einmaligem Kauf über Jahre hinaus für Ihre eigenen Schulungen 20 Appendix 20.1 Data Types On page 22, the data types have already been mentioned

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

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

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

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

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

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

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

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

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

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

COMPUTER TRAINING CENTER

COMPUTER TRAINING CENTER Excel 2007 Introduction to Spreadsheets COMPUTER TRAINING CENTER 1515 SW 10 th Avenue Topeka KS 66604-1374 785.580.4606 class@tscpl.org www.tscpl.org Excel 2007 Introduction 1 Office button Quick Access

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

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

Text Box Frames. Format Text Box

Text Box Frames. Format Text Box Text Box Frames Publisher is different from Word Processing software in that text in Publisher only exists in Text Box Frames. These frames make it possible to type or import text and then move or resize

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

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

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

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

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

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

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 3 Forms, Filters, and Reports 2 Create and Use a Form to Add and Delete Records A form is a database object that can be used to: display

More information

Exam Name: MOS: Microsoft Office Access 2010

Exam Name: MOS: Microsoft Office Access 2010 Vendor: Microsoft Exam Code: 77-885 Exam Name: MOS: Microsoft Office Access 2010 Version: DEMO QUESTION 1 You have a table named Projects created in Microsoft Office Access 2010. You are required to make

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

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

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

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Links to Activities ACTIVITY 1.1. Links to Activities Links to Activities

Links to Activities ACTIVITY 1.1. Links to Activities Links to Activities EXCEL Analyzing Data Using Excel Section 1 Skills Start Excel and identify features in the Excel window Enter labels and values Use the fill handle to enter a series Enter formulas Create a formula using

More information

Microsoft Excel Keyboard Shortcuts

Microsoft Excel Keyboard Shortcuts Microsoft Excel Keyboard Shortcuts Here is a complete list of keyboard shortcuts for Microsoft Excel. Most of the shortcuts will work on all Excel versions on Windows based computer. Data Processing Shortcuts

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

Introduction to Microsoft Excel 2010 Quick Reference Sheet

Introduction to Microsoft Excel 2010 Quick Reference Sheet Spreadsheet What is a spreadsheet? How is Excel 2010 different from previous versions? A grid of rows and columns that help to organize, summarize and calculate data. Microsoft Excel 2010 is built on the

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

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel

New Perspectives on Microsoft Excel Module 1: Getting Started with Excel New Perspectives on Microsoft Excel 2016 Module 1: Getting Started with Excel 1 Objectives, Part 1 Open and close a workbook Navigate through a workbook and worksheet Select cells and ranges Plan and create

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

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

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics 1 Starting Word 2010 with XP Click the Start Button, All Programs, Microsoft Office, Microsoft Word 2010 Starting Word 2010 with 07 Click the Microsoft Office Button with the Windows flag logo Start Button,

More information

Spreadsheets Microsoft Office Button Ribbon

Spreadsheets Microsoft Office Button Ribbon Getting started with Excel 2007 you will notice that there are many similar features to previous versions. You will also notice that there are many new features that you ll be able to utilize. There are

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

Schnieder_index.qxd 7/27/05 1:08 PM Page 481 INDEX. Symbols

Schnieder_index.qxd 7/27/05 1:08 PM Page 481 INDEX. Symbols Schnieder_index.qxd 7/27/05 1:08 PM Page 481 INDEX Symbols & (ampersand), 294 * (asterisk), 180, 201! (exclamation point), 180 - (hyphen), 180 # (pound sign), 180? (question mark), 180 " " (quotation marks),

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 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 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 Excel 2013: Excel Basics June 2014

Microsoft Excel 2013: Excel Basics June 2014 Microsoft Excel 2013: Excel Basics June 2014 Description Excel is a powerful spreadsheet program. Please note that in this class we will use Excel 2010 or 2013. Learn how to create spreadsheets, enter

More information

Microsoft Office Excel

Microsoft Office Excel Microsoft Office 2007 - Excel Help Click on the Microsoft Office Excel Help button in the top right corner. Type the desired word in the search box and then press the Enter key. Choose the desired topic

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

Introduction to Microsoft Excel Parts of the Screen

Introduction to Microsoft Excel Parts of the Screen Introduction to Microsoft Excel Parts of the Screen UNIT OUTCOME: Students will be able to use a spreadsheet to record, organize, and format text and numerical data. Define the Term Spreadsheet: A spreadsheet

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those

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

K Hinds Page 1. Information Communication Technology Microsoft Access

K Hinds Page 1. Information Communication Technology Microsoft Access www.smsbarbados.wordpress.com Page 1 Information Communication Technology Microsoft Access www.smsbarbados.wordpress.com Page 2 What is a database? A database is a collection of information that is organized

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

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

Using Microsoft Word. Tables

Using Microsoft Word. Tables Using Microsoft Word are a useful way of arranging information on a page. In their simplest form, tables can be used to place information in lists. More complex tables can be used to arrange graphics on

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

Excel 2016 Basics for Mac

Excel 2016 Basics for Mac Excel 2016 Basics for Mac Excel 2016 Basics for Mac Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn from

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MSACS10]: Microsoft Access 2010 Length Delivery Method : 3 Days : Instructor-led (Classroom) Course Overview Microsoft Access 2010 teaches participants how to design data tables, select appropriate data

More information

Changing Worksheet Views

Changing Worksheet Views PROCEDURES LESSON 1: TOURING EXCEL Starting Excel 1 Click the Start button 2 Click All Programs 3 Click the Microsoft Office folder icon 4 Click Microsoft Excel 2010 Naming and Saving (Ctrl+S) a Workbook

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

More information

ACCESS 2007 FOUNDATION

ACCESS 2007 FOUNDATION ACCESS 2007 FOUNDATION WWP Learning and Development Ltd Page i STUDENT EDITION LESSON 1 - EXPLORING ACCESS... 1 Introduction... 1 Opening An Existing Database... 4 Converting Existing Databases... 5 The

More information

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT.

A cell is highlighted when a thick black border appears around it. Use TAB to move to the next cell to the LEFT. Use SHIFT-TAB to move to the RIGHT. Instructional Center for Educational Technologies EXCEL 2010 BASICS Things to Know Before You Start The cursor in Excel looks like a plus sign. When you click in a cell, the column and row headings will

More information

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

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

More information

Tables Part I. Session 45: Creating Tables Session 46: Modifying the Layout of Tables Session 47: Formatting the Design of Tables. Unit.

Tables Part I. Session 45: Creating Tables Session 46: Modifying the Layout of Tables Session 47: Formatting the Design of Tables. Unit. Unit 9 Tables Part I Session 45: Creating Tables Session 46: Modifying the Layout of Tables Session 47: Formatting the Design of Tables 2 45 Creating Tables Session Objectives Create a table Enter data

More information

Excel 2016 Basics for Windows

Excel 2016 Basics for Windows Excel 2016 Basics for Windows Excel 2016 Basics for Windows Training Objective To learn the tools and features to get started using Excel 2016 more efficiently and effectively. What you can expect to learn

More information

Word Creating & Using Tables. IT Training & Development (818) Information Technology

Word Creating & Using Tables. IT Training & Development (818) Information Technology Information Technology Word 2007 User Guide Word 2007 Creating & Using Tables IT Training & Development (818) 677-1700 training@csun.edu www.csun.edu/it/training Table of Contents Introduction... 1 Anatomy

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

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

For more tips on using this workbook, press F1 and click More information about this template.

For more tips on using this workbook, press F1 and click More information about this template. Excel: Menu to ribbon reference To view Office 2003 menu and toolbar commands and their Office 2010 equivalents, click a worksheet tab at the bottom of the window. If you don't see the tab you want, right-click

More information

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting

Microsoft Excel Chapter 2. Formulas, Functions, and Formatting Microsoft Excel 2010 Chapter 2 Formulas, Functions, and Formatting Objectives Enter formulas using the keyboard Enter formulas using Point mode Apply the AVERAGE, MAX, and MIN functions Verify a formula

More information

GraphWorX64 Productivity Tips

GraphWorX64 Productivity Tips Description: Overview of the most important productivity tools in GraphWorX64 General Requirement: Basic knowledge of GraphWorX64. Introduction GraphWorX64 has a very powerful development environment in

More information

Creating a Spreadsheet by Using Excel

Creating a Spreadsheet by Using Excel The Excel window...40 Viewing worksheets...41 Entering data...41 Change the cell data format...42 Select cells...42 Move or copy cells...43 Delete or clear cells...43 Enter a series...44 Find or replace

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

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

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

Computer Skills Checklist

Computer Skills Checklist Computer Skills Checklist Tutors can use this checklist to evaluate student s or select appropriate s relevant to the course that is being taught. Parts of this checklist could also be used for initial

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

1) Merge the cells that contain the title and center the title

1) Merge the cells that contain the title and center the title Supplies: You will need a storage location to save your spreadsheet for use in Session 2. You will need the 2 handouts pertaining to Session 1 Instructions: Follow the directions below to create a budget

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

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 WORD 2010 Quick Reference Guide

MICROSOFT WORD 2010 Quick Reference Guide MICROSOFT WORD 2010 Quick Reference Guide Word Processing What is Word Processing? How is Word 2010 different from previous versions? Using a computer program, such as Microsoft Word, to create and edit

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

Working with Tables in Microsoft Word

Working with Tables in Microsoft Word Working with Tables in Microsoft Word Microsoft Word offers a number of ways to make a table. The best way depends on how you like to work, and on how simple or complex the table needs to be. 1. Click

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

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook

Excel Main Screen. Fundamental Concepts. General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Workbook Excel 2016 Main Screen Fundamental Concepts General Keyboard Shortcuts Open a workbook Create New Save Preview and Print Close a Ctrl + O Ctrl + N Ctrl + S Ctrl + P Ctrl + W Help Run Spell Check Calculate

More information