Microsoft Access 2010

Size: px
Start display at page:

Download "Microsoft Access 2010"

Transcription

1 Microsoft Access 2010 Part 3 Michael J. Walk It's about control: use advanced features of Access to control data entry, automate processes, and make database navigation easy. Now that you can use your database to store, access, and manipulate your data, add advanced control features to ensure data integrity, protect your database, visualize your data in charts, and make it easy to navigate.

2 How to Use This Handout 1 Table of Contents Access Database Object Review... 2 Importing Data... 3 Importing from Excel... 3 Advanced Table Design... 5 Validation Rules... 5 Field-level rule... 5 Record-Level Validation Rule... 8 Calculated Fields... 9 Required Values Data Visualization Pivot Charts Creating a Chart on a Report / Form Using Forms to Improve the User Experience Using Command Buttons to Open Objects and Run Tasks Using Form Controls as Query Criteria Creating a Basic Macro Basic Database Maintenance Backing up your Database Creating a Password for your Database JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

3 2 Microsoft Access 2010 How to Use This Handout This handout serves as a point of reference for your workshop. However, you may also use the handout after the class is over to help you remember how to perform some of the tasks covered during the workshop. Click Paths Throughout this handout, you will be given directions to perform a series of mouse clicks also called a click path. For instance, to save a change to an Access object, you should click on the File tab in the ribbon, then click on Save. In this handout, that click path is displayed using a bold font for the words to click on connected by a single right-pointing arrow ( ): File Save In some cases, you must find the correct section of the ribbon before clicking on an icon or button. In these cases, the ribbon section will be highlighted in gray, for example: External Data Import & Link Excel In this example, Import & Link is a ribbon section. Keyboard Directions You also will be given directions to press certain keys on your keyboard. There are two kinds of key press sequences: (1) simultaneous and (2) sequential. 1) Simultaneous key presses refers to keys you have to hold down together to perform a task. Simultaneous key presses are displayed using the plus sign (+) between the keys to be pressed typed in caps. For example, the find box is opened by pressing CTRL + F. CTRL stands for the control key. ALT stands for the alternate key. WIN stands for the windows key (only applies to PCs with windows keys). 2) Sequential key presses refers to keys you have to press in sequence (one after the other it is not necessary to hold them down). Sequential key presses are displayed using a pipe character ( ) between the keys to be pressed typed in caps. For example, one way to save your file under a new file name is to type ALT, then F, then A. This would be displayed as: ALT F A. If you like keyboard shortcuts, Microsoft Office has provided a very robust listing of them at: I provide a lot in this workshop, but their list exhaustive.

4 Access Database Object Review 3 Access Database Object Review 1. Table: stores our data. Without a table, we have no information in our database. 2. Form: allows us to view and enter data. Also useful for user control (i.e., helping making interaction with the database easier). 3. Query: retrieves, summarizes, and manipulates information in tables. 4. Report: creates a printer-friendly and aesthetically pleasing presentation / summary of data from a table(s) or query. 5. Macro: allows us to run complex or multiple tasks in sequence. Importing Data Using Access import tools, we can import from Excel, text files, XML files, SharePoint, other databases (e.g., Oracle, SQL), etc. There are three basic types of import actions: 1. Import: creates a carbon copy of the source file and places that data in the Access database as a table. No connection remains between the Access database and the source file. 2. Link 1 : creates a live electronic link to the source file. If a record is added to the source file, a record is added to the linked access table. 3. Append: adds a carbon copy of the source file to the bottom of a selected existing Access table. Importing from Excel 1. Click on External Data Import & Link Excel. 2. Browse to the desired source file (which Excel file you re trying to import). 3. Choose your desired import action (import, link, or append) 1 Links are great when your database files are very large. By storing the actual data in the source file, you decrease the likelihood that you will exceed the 2GB limit of an Access database file JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

5 4 Microsoft Access Answer the following series of prompts (some slight variation is possible, depending on which import action you chose 2. a. Does the first row contain column headings (or field names)? b. Assign the appropriate data type to each field. c. Decide whether to choose your own primary key or to let Access add one. { We will import data for this class together. Some points during the import: 1) Ratings sheet of RYRData_for class.xlsx a. Data Types i. RatingID Double ii. RiderID Text iii. TimeSent Date/Time iv. Rating Integer v. BusRoute Integer vi. Complete Yes/No b. Primary Key RatingID c. Change Complete Lookup display to check box 2) Riders sheet of RYRData_for class.xlsx a. Data Types i. RiderID Text 2 When appending, your source file MUST contain field names in the first row. The field names in your source file must exactly match the field names of your destination table.

6 Advanced Table Design 5 ii. DOB Date/Time iii. Subscribed Yes/No iv. FirstRating Date/Time b. Primary Key RiderID c. Change Subscribed Lookup display to check box 3) Bus Lines.xlsx a. Data Types i. Number Integer b. Primary Key Number } Advanced Table Design A well-designed table with not only provide all the right fields to collect very specific pieces of information it also provides mechanisms to help reduce the probability for data error. Here are two major features of table design that can be used to increase data integrity. Validation Rules A validation rule is a rule that tells the table what qualities a cell value must have for that value to be valid. For example, many tables have date fields where we enter past events. It is usually a good idea to ensure that a date does not get entered that is in the future. We can do this using a validation rule. Field-level rule A field-level rule applies to values in a single field and can be used to check the appropriateness of the value in a single field for a single record upon data entry. For example, let s say you are entering the dates of birth for a group of new college students. The date you type should not be in the future. Therefore, we can set a field-level rule on our date of birth field to check if the date entered is not in the future. Let s provide a validation rule that makes sure the DOB is before today. Adding a field-level rule in datasheet view 1. Click inside the field you wish to add the validation rule to (DOB). 2. On your ribbon, go to Table Tools Fields Field Validation Validation JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

7 6 Microsoft Access Click on Field Validation Rule. This will open the Builder dialog box where you can provide the validation rule. There are an infinite number of rules that you could use, but in this example, you ll have to type: Now() is a common Office function. It returns the current date and time from your computer s clock. 4. Then click OK. Your rule is now applied to that field.

8 Advanced Table Design 7 5. If you want special text to pop up when someone violates that validation rule, then you must set the Validation Message. Validation Message is found under Table Tools Fields Field Validation Validation Field Validation Message. Adding a field-level rule in design view 1. While in design view, click on the field that needs a validation rule. In the properties window below, you will find a property called Validation Rule. 2. You may either type the rule directly in the box or click on the builder box to open up the Expression Builder JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

9 8 Microsoft Access 2010 Record-Level Validation Rule If you want a validation rule to check the appropriateness of values in 2 or more fields in a given record, you must apply a record-level validation rule. Let s create a rule to make sure that the FirstRating is after the DOB. Adding a record-level validation rule in datasheet view 1. Go to Table Tools Fields Field Validation Record Validation

10 Advanced Table Design 9 2. This will open the Expression Builder for you to type the validation rule. [DOB] < [FirstRating] 3. After setting the rule, it is best to set the Record Validation Message. To set a record-level Validation Rule in design view 1. In design view, in the ribbon, click on Table Tools Design Show/Hide Property Sheet 2. In the TABLE s property sheet, you will find the validation rule cell. Type the rule in that cell and provide the message below that cell. Calculated Fields You can add fields to your tables that are calculated based on values in other fields in the same table. For example, if you have a field containing minutes, you could add a calculated field that calculates the age (in decimal years) when the person provided their first rating. To add a calculated field in datasheet view 1. Using, the ribbon, go to Table Tools Fields Add & Delete More Fields Calculated Field select your field type JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

11 10 Microsoft Access This will bring up the Expression Builder box. Type the calculation in the box and you are done. ([FirstRating] [DOB]) / Change the name of the field by double-clicking on the field heading and overwriting the current name. To create a calculated field in design view 1. Go to the next blank field. In the data type drop-down, find Calculated 2. This will bring up the Expression Builder box. Type the calculation in the box. Required Values If you have a field in your table that CANNOT be left blank when a new record is inserted, change that field s Required property to TRUE. In datasheet view: 1. Click in the field that you wish to make required. 2. In the ribbon under Table Tools Fields Field Validation Required is the average number of days in a year.

12 Data Visualization 11 Data Visualization Pivot Charts You can turn any query or table in a pivot chart / pivot table. (A pivot chart is a graphical representation of a pivot table; I will use pivot chart throughout this section, but am referring equally to either one.) 1. Switch to pivot table view by using your ribbon: Home Views Pivot Chart 2. This will bring up the Pivot Chart view. Pivot charts contain 4 sections: a. X-axis (categories) b. Y-axis (data values) 2013 JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

13 12 Microsoft Access 2010 c. Series (legend) d. Filters 3. At the right of your screen, the Chart Field List should be displayed. Simply drag and drop the fields needed to create the chart into their proper location. Creating a Chart on a Report / Form You can also embed a chart (graph) into a report or form. 1. Create a new report in design view. 2. Use the Chart tool in the ribbon, and place the chart in the form s design area.

14 Data Visualization Follow the prompts to add the graph. 4. To edit the appearance of the graph, double-click on it. 5. You can: a. Change the chart type b. Edit font sizes, font types, font colors c. Add/remove data labels d. And many more 2013 JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

15 14 Microsoft Access 2010 Using Forms to Improve the User Experience Using Command Buttons to Open Objects and Run Tasks It is very common to provide your database users with a form that will allow them to perform tasks (run reports, run queries, import data) with just a click of a button. General Procedure for Using Forms for User Control 1. Create all necessary objects to perform the task independent of a special button. 2. Create a blank form. Add a button to it that will perform the necessary task. Example task: running a query by clicking a button 1. Create the query that you wish to run. Save the query under a unique name. 2. Create a blank form by going to Create Forms Blank Form 3. Add a title to the form (if needed; Form Layout Tools Design Header/Footer Title) 4. Add a button to the form by clicking on the button icon in the ribbon, and then clicking in the blank space on the form. 5. This will open the Command Button Wizard. 6. Under the Category Miscellaneous, you will find the Action, Run Query. Select this. Then select the query you wish to run. 7. Edit the text that will appear on the button. 8. You re done.

16 Using Forms to Improve the User Experience Using Form Controls as Query Criteria Sometimes you not only want to run a query from a form, but you also want to allow the user to specific criteria that the query should use. By creating a couple of text boxes on the same form that runs the query, we can allow the user to specific a start date and end date for a particular query. 1. Add two text box controls to the form by clicking on the text box control icon in the ribbon and then clicking on the blank form where you want to place the box. 2. Open the Property Sheet for the first text box. On the Property Sheet, click on the Other tab. Change the Name property to StartDate. 3. Do the same for the second text box; however, name it EndDate. 4. Edit the query s design so that, in the criteria for the TimeSent field, you have the following syntax: Replace Form1 with whatever the form s saved name will be. Replace StartDate and EndDate with the actual control name (if different). 5. Now, when the query runs, it will be looking for this form to be open and for these text boxes to have dates typed into them so the query can use those dates as criteria for retrieving the information from the table JWalk Professional Services Part 3 v2.0 (rev 9/7/2013) 15

17 16 Microsoft Access 2010 Creating a Basic Macro Basic Process 1. Click on Create Macros and Code Macro 2. Use the drop-down menu to select the desired action(s) 3. Complete all required properties for that action 4. Save 5. Click run Example task: Create a macro to export query results 1. Click on Create Macros and Code Macro 2. Select ImportExportSpreadsheet in the dropdown box As seen above, you will get a series of properties or settings to complete. 4. Transfer type: Export 5. Spreadsheet type: Excel Workbook 6. Table name: (name of table/query to export) 7. File name: (full path of desired destination file, including file extension) 8. Save the macro. 9. When you run the macro, it will first access the table/query, then prepare the results for export to an Excel file that will be dumped in the location you specified in the File Name setting. 4 If this option is not available, be sure that Show All Actions is selected in the ribbon.

18 Basic Database Maintenance 17 Basic Database Maintenance Backing up your Database It is important to create regular backups of your database. The more critical the information is, the more important it is to create regular backups. 1. In the ribbon, click on File Save & Publish Back Up Database 2. Follow the prompts to create the backup. 3. I recommend keeping the database name the same and then appending the date/time of the backup to the filename to easily tell which back up is the one you want. Creating a Password for your Database Placing a password on your database keeps your database (tables, forms, etc.) secure from others. There IS NO PASSWORD RETRIEVAL, so, don t lose your password. 1. In the ribbon, click on File Info Encrypt with Password 2. Type your password twice when prompted 3. Don t forget it 2013 JWalk Professional Services Part 3 v2.0 (rev 9/7/2013)

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A M I C R O S O F T A C C E S S 2 0 1 0 : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org www.jwalkonline.org/main @MichaelJWalk

More information

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A

M I C R O S O F T A C C E S S : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A M I C R O S O F T A C C E S S 2 0 1 3 : P A R T 2 G E T T I N G I N F O R M A T I O N O U T O F Y O U R D A T A Michael J. Walk ALC Instructor michael@jwalkonline.org www.jwalkonline.org/main @MichaelJWalk

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

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

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

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

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

EXCEL BASICS: MICROSOFT OFFICE 2010 EXCEL BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

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

INTRODUCTION ACCESS 2010

INTRODUCTION ACCESS 2010 INTRODUCTION ACCESS 2010 Overview of Ms. Access 2010 Microsoft Access is a computer application used to create and manage databases. Access Databases can store any type of information: numbers, text, and

More information

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

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

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

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 1 Getting Started with Microsoft Access 2016 Learning Objectives Identify Good Database Design Create a Table and Define Fields in a Blank

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 ADVANCED Linda Muchow

EXCEL ADVANCED Linda Muchow EXCEL ADVANCED 2016 Alexandria Technical and Community College Customized Training Technology Specialist 1601 Jefferson Street, Alexandria, MN 56308 320-762-4539 Linda Muchow lindac@alextech.edu 1 Table

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

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

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

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

Chapter-2 Digital Data Analysis

Chapter-2 Digital Data Analysis Chapter-2 Digital Data Analysis 1. Securing Spreadsheets How to Password Protect Excel Files Encrypting and password protecting Microsoft Word and Excel files is a simple matter. There are a couple of

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Unit 6 - Data Integration Quick Links & Text References Overview Pages AC418 AC419 Showing Data on the Web Pages AC420 AC423 CSV Files Pages AC423 AC428 XML Files Pages

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Excel Tables and Pivot Tables

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

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Introduction to Microsoft Access 2016

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

More information

Access 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

Excel. Spreadsheet functions

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

More information

PivotTables & Charts for Health

PivotTables & Charts for Health PivotTables & Charts for Health Data Inputs PivotTables Pivot Charts Global Strategic Information UCSF Global Health Sciences Version Malaria 1.0 1 Table of Contents 1.1. Introduction... 3 1.1.1. Software

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

M I C R O S O F T E X C E L P A R T 2 : W O R K I N G WITH NUMBERS

M I C R O S O F T E X C E L P A R T 2 : W O R K I N G WITH NUMBERS ACHIEVEMENT & LEARNING CENTER UNIVERSITY OF BALTIMORE M I C R O S O F T E X C E L 2 0 1 3 P A R T 2 : W O R K I N G WITH NUMBERS BY: MI C HAEL J. WA LK, M. S. www.jwalkonline.org/main @MichaelJWalk michael@jwalkonline.org

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 This class is designed to cover the following basics: What you can do with Excel Excel Ribbon Moving and selecting cells Formatting cells Adding Worksheets, Rows and

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 Excel 2007 Lesson 7: Charts and Comments

Microsoft Excel 2007 Lesson 7: Charts and Comments Microsoft Excel 2007 Lesson 7: Charts and Comments Open Example.xlsx if it is not already open. Click on the Example 3 tab to see the worksheet for this lesson. This is essentially the same worksheet that

More information

Beginner s Guide to Microsoft Excel 2002

Beginner s Guide to Microsoft Excel 2002 Beginner s Guide to Microsoft Excel 2002 Microsoft Excel lets you create spreadsheets, which allow you to make budgets, track inventories, calculate profits, and design charts and graphs. 1. Open Start

More information

Microsoft Access 2007 Level 3

Microsoft Access 2007 Level 3 Information Technology Services Kennesaw State University Microsoft Access 2007 Level 3 1 Copyright 2008 KSU Dept. of Information Technology Services This document may be downloaded, printed or copied

More information

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

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

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

More information

Intermediate Excel 2003

Intermediate Excel 2003 Intermediate Excel 2003 Introduction The aim of this document is to introduce some techniques for manipulating data within Excel, including sorting, filtering and how to customise the charts you create.

More information

Advanced Excel for EMIS Coordinators

Advanced Excel for EMIS Coordinators Advanced Excel for EMIS Coordinators Helen Mills helenmills@metasolutions.net 2015 Metropolitan Educational Technology Association Outline Macros Conditional Formatting Text to Columns Pivot Tables V-Lookup

More information

This book is about using Microsoft Excel to

This book is about using Microsoft Excel to Introducing Data Analysis with Excel This book is about using Microsoft Excel to analyze your data. Microsoft Excel is an electronic worksheet you can use to perform mathematical, financial, and statistical

More information

EXCEL BASICS. Helen Mills META Solutions

EXCEL BASICS. Helen Mills META Solutions EXCEL BASICS Helen Mills META Solutions OUTLINE Introduction- Highlight Basic Components of Microsoft Excel Entering & Formatting Data, Numbers, & Tables Calculating Totals & Summaries Using Formulas Conditional

More information

Making Tables and Graphs with Excel. The Basics

Making Tables and Graphs with Excel. The Basics Making Tables and Graphs with Excel The Basics Where do my IV and DV go? Just like you would create a data table on paper, your IV goes in the leftmost column and your DV goes to the right of the IV Enter

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

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Microsoft Office 2016 Mail Merge

Microsoft Office 2016 Mail Merge Microsoft Office 2016 Mail Merge Mail Merge Components In order to understand how mail merge works you need to examine the elements involved in the process. In any mail merge, you'll deal with three different

More information

Exchange (Copy, Import, Export) Data Between Excel and Access

Exchange (Copy, Import, Export) Data Between Excel and Access Excel usage is widespread and Excel is often the go-to Office application for data entry, analysis, and manipulation. Microsoft Access provides relational database capability in a compact desktop environment.

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

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

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

More information

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

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 1) The table Design view shows 1) A) the relationships established for the table. B) the formatting applied to the table. C) the structure of the table. D) the number of records in the table.

More information

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters

Using Microsoft Word. Paragraph Formatting. Displaying Hidden Characters Using Microsoft Word Paragraph Formatting Every time you press the full-stop key in a document, you are telling Word that you are finishing one sentence and starting a new one. Similarly, if you press

More information

Importing and Exporting Data

Importing and Exporting Data 14 Importing and Exporting Data SKILL SUMMARY Skills Exam Objective Objective Number Importing Data Import data into tables. Append records from external data. Import tables from other databases. Create

More information

2. This is a cell; this cell is designated as A1.

2. This is a cell; this cell is designated as A1. Queen s Learning Commons: Microsoft Excel Basics 1. These are the columns. 2. This is a cell; this cell is designated as A1. 3. Let s make a table. Click on the box you want to put text in and simply begin

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

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

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Excel contains numerous tools that are intended to meet a wide range of requirements. Some of the more specialised tools are useful to people in certain situations while others have

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

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

Integrating Word with Excel

Integrating Word with Excel Integrating Word with Excel MICROSOFT OFFICE Microsoft Office contains a group of software programs sold together in one package. The programs in Office are designed to work independently and in conjunction

More information

Access Intermediate

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

More information

Text University of Bolton.

Text University of Bolton. Text University of Bolton. The screen shots used in this workbook are from copyrighted licensed works and the copyright for them is most likely owned by the publishers of the content. It is believed that

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

More information

Microsoft Excel 2013 Comments (Level 3)

Microsoft Excel 2013 Comments (Level 3) IT Training Microsoft Excel 2013 Comments (Level 3) Contents Introduction...1 Adding a Comment to a Cell...1 Displaying Cell Comments...2 Editing a Cell Comment...3 Deleting a Cell Comment...3 Searching

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

ICDL & OOo BASE. Module Five. Databases

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

More information

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

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

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

Spreadsheet Concepts: Creating Charts in Microsoft Excel

Spreadsheet Concepts: Creating Charts in Microsoft Excel Spreadsheet Concepts: Creating Charts in Microsoft Excel lab 6 Objectives: Upon successful completion of Lab 6, you will be able to Create a simple chart on a separate chart sheet and embed it in the worksheet

More information

Section 1 Microsoft Excel Overview

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

More information

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

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

Enterprise Reporting -- APEX

Enterprise Reporting -- APEX Quick Reference Enterprise Reporting -- APEX This Quick Reference Guide documents Oracle Application Express (APEX) as it relates to Enterprise Reporting (ER). This is not an exhaustive APEX documentation

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information

Access Intermediate

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

More information

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon.

EXCEL 2007 TIP SHEET. Dialog Box Launcher these allow you to access additional features associated with a specific Group of buttons within a Ribbon. EXCEL 2007 TIP SHEET GLOSSARY AutoSum a function in Excel that adds the contents of a specified range of Cells; the AutoSum button appears on the Home ribbon as a. Dialog Box Launcher these allow you to

More information

Excel 2013 for Beginners

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

More information

Advanced Excel Selecting and Navigating Cells

Advanced Excel Selecting and Navigating Cells Advanced Excel 2007 One major organizational change in Excel 2007, when compared to 2003, is the introduction of ribbons. Each ribbon reveals many more options depending on what tab is selected. The Help

More information

IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007

IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007 IITS Workshop Creating a Gradebook in Microsoft Office Excel 2007 Table of Contents Our Gradebook Example:... 3 Set Up a New Gradebook... 3 Adding Formulas (Averages and Final Grades)... 4 Formatting data...

More information

Creating a PowerPoint Presentation

Creating a PowerPoint Presentation powerpoint 1 Creating a PowerPoint Presentation Getting Started 1. Open PowerPoint from the "Start" "Programs" Microsoft Office directory. 2. When starting PowerPoint, it usually starts with a new blank

More information

Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet

Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet 9 Data analyses To analyze data, a tabular preparation of the data or a chart

More information

Excel Part 3 Textbook Addendum

Excel Part 3 Textbook Addendum Excel Part 3 Textbook Addendum 1. Lesson 1 Activity 1-1 Creating Links Data Alert and Alternatives After completing Activity 1-1, you will have created links in individual cells that point to data on other

More information

Using Microsoft Excel

Using Microsoft Excel About Excel Using Microsoft Excel What is a Spreadsheet? Microsoft Excel is a program that s used for creating spreadsheets. So what is a spreadsheet? Before personal computers were common, spreadsheet

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

Excel Shortcuts Increasing YOUR Productivity

Excel Shortcuts Increasing YOUR Productivity Excel Shortcuts Increasing YOUR Productivity CompuHELP Division of Tommy Harrington Enterprises, Inc. tommy@tommyharrington.com https://www.facebook.com/tommyharringtonextremeexcel Excel Shortcuts Increasing

More information

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set

Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Office 2016 Excel Basics 25 Video/Class Project #37 Excel Basics 25: Power Query (Get & Transform Data) to Convert Bad Data into Proper Data Set Goal in video # 25: Learn about how to use the Get & Transform

More information

Data. Selecting Data. Sorting Data

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

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information

Working with Data in Microsoft Excel 2010

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

More information

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