Getting Started with Access 2007

Size: px
Start display at page:

Download "Getting Started with Access 2007"

Transcription

1 Getting Started with Access 2007 Table of Contents Getting Started with Access Plan an Access 2007 Database... 2 Learning Objective Introduction to databases Planning a database... 5 Summary... 9 Get Started with Access Learning Objectives Access interface elements Getting Help in Access Create Databases in Access Learning Objectives Creating a database in Access Creating a blank database Creating a database from a template Access database properties Summary

2 Plan an Access 2007 Database Learning Objective plan a database After completing this topic, you should be able to 1. Introduction to databases A computer database is used to store and organize information in a manner that enables programs and users to easily access and update sections of the information. Databases act as a form of electronic filing system. This promotes improved work practices and more efficient information management processes. The database assigns a unique reference to each record within the database so that it can be stored, organized, and retrieved efficiently. Databases are an effective means of combining multiple data sources into one centralized location. Data in Access can be from non-access sources such as Excel spreadsheets and data from other database applications. For example, a large retail company could use a centralized database to store data such as its customers' personal details and information on what each customer has purchased. This data can be correlated to produce a profile of customers based on age, sex, location, and purchasing patterns. By analyzing customer information from multiple stores in a centralized database, the retailer can predict what products future customers will be interested in buying, based on their demographics and geographic location. There are a number of different approaches to databases. Depending on what the database is going to be used for and user requirements, the four commonly used database types are hierarchical The hierarchical database type uses an inverted tree structure where the roots are formed by the parent data and the branches are formed by the child data sets. This database type contains only one-to-many data relationships. Each child data set connects to only one 2

3 parent data set. A hierarchical database could be used by a company to organize data from all of its offices. The head office would form the parent data while the multiple suboffices would be the child data. network The network database type enables child data sets to have multiple relationships with parent data sets. The many-to-many relationships enable improved flexibility within the organization and retrieval of data. For example, in a retail database, a record of a sales transaction can be a child of the customer data set as well as the sales person's data set. object The object database stores objects based on the object model of the application. Objects include the data and their operations or method. The objects are created using programming languages such as Java and C++. Object databases are used for inter-program database applications where multiple applications will frequently be accessing the database. relational The relational database model uses a system of tables to organize data elements. Similar content is grouped by table. Data elements within different tables can be linked together to form relationships between records. The linking of relevant records allows for easy and effective analysis of data within a relational database. Microsoft Access uses a relational database model. Tables are the cornerstone of relational databases and consist of two main elements: rows Each row of a table is referred to as a record. A new row is inserted whenever a new record is added to a table. The new row will appear at the bottom of the table. In the Office Details table, for example, the record is made up of information about a particular office. The first record in the table begins with the values 1, Head Office NY, 64 Klondike Ave, and New York. columns 3

4 Columns are referred to as fields. Data within each row is separated into fields. Each field has a heading, which ideally should summarize the data being grouped. Microsoft Access is a relational database manager. Relational databases are extremely useful, as you are able to quickly find and bring together information stored in multiple tables. Microsoft Access uses the relational database structure to store, manipulate, and analyze data tables in many ways. The use of tables is pivotal for the success of the relational database model. Tables remove the need for duplication of data and enable links to relevant data in different tables to be created. For example, a list of supplier codes can be linked to a table containing supplier details, to avoid having the supplier details in both tables. Tables form a key part of the relational database model. They allow the data to be organized, analyzed, and accessed quickly and efficiently. Each table should include a field that uniquely identifies each record. The column that contains the unique identifier for individual records is called the primary key of the table. Every table in Access should contain a primary key field. Access can automatically add a primary key as you add tables to a database or you can specify your own primary key for each table. Referential integrity in a relational database involves maintaining consistency between related tables. Referential integrity is achieved using a primary key. For example, if you have two Access tables, one that contains the names of travel agents and another that contains the location of offices, you could link each travel agent to an office. If however, one of the offices was deleted, the travel agents assigned to that office would no longer link to an office. This would be an example of poor referential integrity. Access ensures referential integrity is maintained by presenting you with warning messages if an action you are taking is going to jeopardize referential integrity. Access will also block certain actions and automatically make changes to records in tables to ensure that referential integrity is maintained. Question What are the key features of a relational database? 4

5 Options: 1. Primary key 2. Tables 3. Referential integrity 4. Analysis methods 5. C++ objects Answer Option 1: Correct. A primary key ensures that a relational database has a method of uniquely identifying each record within its tables. Primary keys also enable Access to create links between records in different tables. Option 2: Correct. Tables enable relational databases to efficiently organize the various data records. Tables also assist by creating logical groups of relevant data. Option 3: Correct. Each record within a table must contain a primary key and links with records from different tables must be consistent. Option 4: Incorrect. The key features of a relational database involve the storage and organization of data. How the data is analyzed is not a key feature of the relational database. Option 5: Incorrect. Objects developed in programming languages such as Java and C++ are not key features of the relational database model. Correct answer(s): 1. Primary key 2. Tables 3. Referential integrity 2. Planning a database Access 2007 provides a dynamic environment for planning and designing databases. While Access enables you to change a number of elements of your database once created, it is still important to plan your database effectively to ensure that no time or money is wasted later on. Planning a database is a three-step process: 5

6 interview end users The first step while planning a database is to interview the target end users to establish the information that they require. For example, a travel agency needs the database to contain data such as customer and vacation details. Different people within the same company may also want different information. For example, a manager may want the database to contain sales performance data for each travel agent or company office. identify main tables Once you have identified and interviewed the target users of the database, you can formulate a list of the tables that will be required in the database. Once you have created a list of the required tables, you can begin to plan the details that you wish to include in each table. For example, if you are creating a database for a travel agency; you require a table that contains customer names, addresses, and other customer details. identify the relationship between the tables After establishing what tables will be required and their details, you need to determine the level of interactivity required among the tables. Based on the users' needs, you can plan to create relationships between the tables to link relevant data. For example, if you have a table containing employee records and a table containing office details, you can establish a relationship between the two tables so that each employee is linked to an office. Suppose you have been asked to create a database for your organization, Easy Nomad Travel. You begin the planning process by interviewing the end users of the database to establish their requirements. The travel agents will be the primary end users of the database and will be using it to book and query vacation reservations. Functionality that they require includes adding and editing customer details entering customer payments making vacation bookings 6

7 Managers would like to use the database to resolve a wide range of queries including travel agent sales performance and sales performance by regional office. Based on the input from the users, you decide to create the following tables: a Customer table to store customer details a Payments table to store payment details a Vacations table to store vacation package and destination information a Carriers table to store the airlines that will be used for each package a Bookings table to store customer reservation details To fulfill the needs of Easy Nomad Travel management, you decide to create two further tables. You decide to add an Employees table that stores data regarding each employee. You also decide to add a table for Office Details, containing information relating to each office. The planned Easy Nomad Travel database now contains all the tables it needs to function efficiently. For the database to function correctly, relationships in the form of links between tables need to be planned. Examples of relationships that can be planned include linking a travel agent to the sales they make or linking particular airlines to the holiday packages they are used in. The types of relationships available in Access are one-to-one One-to-one relationships exist where a record in one table has only one matching record in another table. Each record in the second table also only has one matching record in the first table. This type of relationship is not very common as data that shares commonality on a one-on-one basis would usually be contained within the same table. An example of a one-to-one relationship could be a link between a booking in the Bookings table and a payment in the Payments table. one-to-many 7

8 One-to-many relationships exist where a single record in one table matches multiple records in another table. Each record in the second table matches only a single record in the first table. For example, each customer record from the Customer table can match multiple vacations in the Vacations table but each vacation record in the Vacations table will match only one customer record in the Customers table. many-to-many Many-to-many relationships exist where multiple records in one table match multiple records in another table and vice versa. Due to the nature and complexity of this type of relationship, a junction table is used to organize the interconnectivity between the tables. For example, a record in the Bookings table can link to numerous records in the Carriers table. A record in the Carriers table will also link to numerous records in the Bookings table. At the end of the planning process for the Easy Nomad Travel database, you should have a good idea of the details the tables need to store the kinds of queries that the tables need to resolve the type of relationships that need to be formed between tables Question Suppose you have been asked to plan a database for storing and retrieving customer information. What steps do you take during the planning process? Options: 1. Create a detailed report on the proposed tables 2. Identify the links needed between the tables 3. Hold a meeting with the customer service representatives to establish their daily tasks 4. Create the tables and links to be used in the database 5. Create the analysis formulas that will be used to analyze the customer data Answer 8

9 Option 1: Correct. The second step in the database planning process is to identify what tables the database should include and the details of those tables. Option 2: Correct. The third step in the database planning process is to identify the relationships that need to be created to link data in different tables. Option 3: Correct. The first step of the database planning process is to interview the potential users of the database to establish their needs and what they require of a database. Option 4: Incorrect. During the database planning stage, the tables and relationships are proposed and formulated but not implemented. Option 5: Incorrect. During the database planning stage, the potential analysis methods are not investigated or implemented. Correct answer(s): 1. Create a detailed report on the proposed tables 2. Identify the links needed between the tables 3. Hold a meeting with the customer service representatives to establish their daily tasks Summary A database is a tool used to store and organize information in a manner that can be easily accessed and updated. Databases are commonly structured using a hierarchical model, network model, object model, or relational model. Microsoft Access is a relational database management program. A relational database is based on tables, which consist of rows and columns. Table columns are used to form fields and each table row forms a record. Relationships can be created between different tables to form links between related data. To avoid wasting time and money, it is important to carefully plan a database. The three steps to take during the database planning stage are interviewing the end users, identifying the main tables, and identifying the necessary relationships between the tables. 9

10 Get Started with Access 2007 Learning Objectives After completing this topic, you should be able to match the main elements of the Access 2007 screen with their functions use Access Help 1. Access interface elements Microsoft Access enables you to create a new database or open an existing database. The commonly used method to launch Access is to click the application icon on the Window's Start menu. You can also launch Access by clicking an Access shortcut placed in a convenient location, such as your Window's desktop. Alternatively, if you have an existing database, you can double-click the database icon to open the database in Access. Try It Suppose you would like to open a database that you have worked on recently. First you need to launch Access using the Start menu. To complete the task 1. Click the Start button 2. Click All Programs 3. Click Microsoft Office 4. Click Microsoft Office Access 2007 The Access application opens. When you launch Access, it opens the Getting Started with Microsoft Office Access page. This page centralizes all the options for opening an existing database or creating a new one. Template Categories - Local Templates 10

11 The Template Categories - Local Templates section enables you to create a new database using a template that is already on your computer. A template is a predefined database that contains ready-made tables, forms, queries and reports. These templates are designed to save you time when setting up commonly used databases. This section provides several database templates, some of which can be used to organize things like contacts, assets, and students. From Microsoft Office Online The From Microsoft Office Online section enables you to create a new database using a template downloaded from the Internet. This section can help you to save time and money while creating advanced databases to organize things like events, projects, and marketing projects. Blank Database The Blank Database section enables you to create a new, empty database. The database you create will contain no data or formatting of any kind, just a blank table to start designing your database. Featured Online Templates The Featured Online Templates section enables you to see what is new and happening in Access. The section provides hyperlinks that are automatically updated by Microsoft and contain the latest updates, downloads, help files, and tips. This section also includes featured online templates. Open Recent Database The Open Recent Database section enables you to open a database that you have worked on in the past. You use the More hyperlink to browse to and open existing databases other than the ones listed. You decide to open a database that you have worked on recently, the Easy Nomad Travel database. You open the database by clicking the link in the Open Recent Database section. The Access interface contains several tools and controls that enable you to view, format, and organize the contents of your database. Microsoft Office button The Microsoft Office button opens a menu of options that enable you to open, save, and print databases. You are also able to access the advanced Access options and exit Access from this menu. 11

12 Navigation Pane The Navigation Pane enables you to view and open all the database objects that are present within your database. Database objects include tables, queries, forms, reports, modules, and macros. Access 2007 enables you to customize the groups within the Navigation Pane so that objects can be organized into groups based on properties such as object type, creation date, and even custom groupings can be created. Title bar The Access title bar contains the Quick Access Toolbar, which includes Undo, Redo, and Save options. The center of the Title bar displays the name of the database that is open. The Title bar also contain any further information, such as the database being open in read-only mode. Access work area The Access work area is a new element in Access 2007 that provides an innovative approach to working with tables, forms, reports, and other database objects. All objects that are opened are placed in the work area. Along the top of the work area is a row of tabs representing all of the objects that are currently open. Clicking a tab will activate that particular object in the work area. Access enables you to customize the work area you can turn the page tabs on and off, for example. Ribbon The Ribbon centralizes all commands that are relevant to the active object in one location. The Ribbon is highly dynamic and will change as new objects are selected and new actions are taken. The Ribbon is subdivided into a number of tabs that contain groups of related commands. The standard Access tabs are Home, Create, External Data, and Database Tools. The Status bar is an interface feature that displays status messages, property hints, and progress indicators. The Access 2007 Status bar contains two standard functions the view-switching function and the zoom function. The view-switching function enables you to switch between the available views. The zoom function enables you to enlarge or reduce your view of objects while previewing a print job. Browsing a record within a table or form is one of the most important tasks that can be performed in Access. Records can be browsed via the Ribbon using the Find group of tools. These are the commands: Replace to replace a particular search term with a supplied alternative Go to to navigate through your records, jump to the beginning or end of your records and create a new record 12

13 Select to select a record or all records within an object Similar to the Find group of tools, a number of commands on the Ribbon open further dialog boxes and submenus. You click Find to open the Find and Replace dialog box. The Find and Replace dialog box enables you to enter your search criteria and search options. Find will search the active object for the search term. The Access interface is dynamic and customizable. You can adjust the contents of certain toolbars based on your preferences. One of the most commonly customized toolbars in Access is the Quick Access toolbar. You can easily add and remove commands from the Quick Access Toolbar by clicking the Customize Quick Access Toolbar drop-down arrow and then selecting the commands you want to add and deselecting the commands you want to remove. 2. Getting Help in Access Access provides a comprehensive help facility that assists you with finding your way around the interface and its functionality. Access provides assistance in two ways. You can access context-sensitive and searchable help information by clicking the Help button on the Ribbon. Keyboard Sequence The keyboard alternative is F1. Alternatively, if you require assistance with a particular menu or button, you can mouse over the menu or button and a ScreenTip appears, informing you of the item's function. Try It You are working on a database and want to insert a logo into a form but do not know how. Open the Help window in Access to find a solution. To complete the task 1. Click the Microsoft Office Access Help icon 13

14 The Access Help feature displays. The Help window contains a number of features that will assist you with resolving queries. Toolbar The toolbar contains controls that enable you to navigate, print, and manipulate the Help content. Text box The "Type words to search for" text box enables you to enter search terms, such as an operation or a function, that you would like to find help on. Table of Contents The Table of Contents enables you to browse the Access help information according to topic. Content pane The Content pane displays content that has been opened from either the Table of Contents or a search. When you perform a search, the search results will appear in the Content pane. Clicking the Search Button opens the Search drop-down menu. The Search drop-down menu enables you to specify what content you would like to search when you specify a search term in the "Type words to search for" text box. You can specify an online source such as All Access or Access Training or an offline source such as Access Help or Developer Reference. If you have a specific issue or query, it is best to use the Search function to look for specific help topics within Access. If you are interested in learning more about a general aspect or function within Access, it is best to use the context-sensitive help files. Alternatively, if you have difficulty completing a task in a particular dialog box, you can click the Help icon in the title bar of the dialog box. If there is a help file available for the dialog box, it will be displayed. When you launch Microsoft Access 2007, you are greeted with the Getting Started Page. This page contains links that enable you to open an existing database, create a blank database, and create a database using a template. Once your database is open, you can view and manipulate your database using the Title bar (which includes the Quick Access Toolbar), the Ribbon, the Microsoft Office button, the Navigation Pane, the Status bar, and the Access work area. 14

15 Access provides you with an extensive Help feature that enables you to search for particular queries. You can browse the context-sensitive Help topics that are organized by command and product feature, as well as find information on a particular dialog box. 15

16 Create Databases in Access 2007 Learning Objectives After completing this topic, you should be able to create a database from scratch create a database from a template 1. Creating a database in Access 2007 Access 2007 enables you to create databases according to your specific requirements. With Access 2007, you can create small and simple databases, such as a home inventory, or very large and complex databases, such as a company database for managing customer orders, product lists, accounts, and employee information. To create a database in Access 2007, you can use a blank database A blank database does not contain any objects, such as tables and forms. When you create a blank database, you need to design your own database and build your own tables, queries, forms, and reports. database template A database template enables you to create a database based on a predefined structure. Since a predefined database template contains all the tables, queries, forms, and reports you might need, this is the easiest and fastest way to create a database. Access 2007 provides you with 11 local predefined database templates. You can also download other predefined database templates from the Microsoft Office web site. For example, you can download predefined database templates to create databases to manage your contact information, assets, or inventory. Whether you opt to create a blank database or a database based on a template, both these options are available on the Getting Started with Microsoft Office Access screen. 2. Creating a blank database To create a blank database, you click the Blank Database icon. 16

17 Access 2007 displays the Blank Database pane. The Blank Database pane enables you to create a database from the start, so it does not provide any objects, such as tables, forms, and queries. By default, Access 2007 suggests a file name for the database in the File Name text box. In this case, Access 2007 suggests the name Database1. Suppose you want to create a blank database to track Easy Nomad Travel's assets. To rename the database, you delete the default filename, Database1, in the File Name text box and type Assets instead. By default, Access 2007 also selects the location in which the database will be saved. If you do not want to save it in the default folder location, you can browse to another location. Graphic In this case, the default folder is C:\Users\Jennifer Westlein\Documents\. Try It Suppose you want to store the Assets database in the Databases subfolder of the Documents folder. To complete the task 1. Click the Browse for a location to put your database icon 2. Select the Databases subfolder and click Open 3. Click OK Access 2007 will now save the Assets database in C:\Users\Jennifer Westlein\Documents\Databases\ once it is created. Once you have chosen a location to store your database, Access 2007 returns to the Blank Database pane. The location is now C:\Users\Jennifer Westlein\Documents\Databases. To create the Assets database, you click Create. 17

18 Access 2007 creates a blank database titled "Assets." By default, the database displays in Datasheet view with an empty table named Table1. The first empty cell in the Add New Field column is selected. You can now enter information into the datasheet table. Access 2007 enables you to manually enter data or import data from another source, such as Excel, into an Access 2007 table. Manually entering information in Access 2007 is very similar to working in a Microsoft Office Excel 2007 worksheet. You begin by typing data into the selected cell. In this case, you type Printer in the selected cell. To move to the next cell, you press Enter on the keyboard. Access selects the adjacent cell. Try It You want to enter the printer's location in the selected cell. To complete the task 1. Type Room 201 and click the Enter key provided Access 2007 enters the text and selects the next adjacent cell. Access 2007 creates the table structure as you enter data. As you add a new column to the table, a new field is defined. By default, Access sets each field's data type based on the data you enter. For example, if you type text into one column, Access 2007 defines the data type as text. If you then type numbers into that column, the numbers will be interpreted as text and not as numbers. This means that you won't be able to perform mathematical functions on those numbers because Access interprets them as a text field. Next you type a dollar and cent amount, in this case $456.67, to indicate the cost of the printer in the next column and press Enter. Access 2007 automatically defines the data type as currency for the entire column. Before you close a database, you should save the database by clicking the Save button on the Quick Access Toolbar. 18

19 Access 2007 enables you to change the table name in the Save As dialog box. In this case, you accept the default table name and click OK. Graphic The default name is Table1. To close the database, you click the Close button. SkillCheck You want to create a database to manage Easy Nomad Travel vacation packages. You've decided to create the database from scratch. Create a blank database named "Vacations" and store it in the default folder location. The Getting Started with Microsoft Office Access screen displays. Task: 1. Access the Blank Database pane. 2. Name and create the database. Answer To complete the task Step 1: Click the Blank Database icon Step 2: Type Vacations and click Create The default database name is Database1 and the default file location in C:\Users\Jennifer Westlein\Documents\. 3. Creating a database from a template Access 2007 enables you to create a database using a predefined template. You can create a database using a local template template from Microsoft Office Online 19

20 To create a database using a local template, you click Local Templates in the Template Categories section on the Getting Started with Microsoft Office Access screen. The Local Templates pane provides you with 11 predefined databases. Supplement Selecting the link title opens the resource in a new browser window. Launch window Click hereto learn more about the local templates available in Access If the local database templates do not suit your database requirements, you can connect to the Microsoft Office web site to download new or modified database templates. The options for online database templates are stored in the From Microsoft Office Online section on the Getting Started with Microsoft Office Access screen. The From Microsoft Office Online section categorizes the online templates. Business The Business category contains templates that you would normally use for business purposes. For example, you can download a database template to track calls, log customer service complaints, or keep track of your business accounts. Education The Education category contains templates that you would normally use in an educational institution. For example, you can download a database template to keep track of faculty members' or students' contact details. Personal You can select one of the templates in the Personal category to download a database template for personal use. For example, you can download a database template to manage your home inventory or personal contacts. Sample The sample category contains a sample database for a fictitious company. To view the templates available from Microsoft Office Online, you click on the categories listed in the From Microsoft Office Online pane. 20

21 For example, to view the business category, you click Business in the From Microsoft Office Online pane. Access 2007 displays the Business pane. Graphic The Business Pane includes the following templates: Assets, Business account ledger, Call tracker, Contacts, Customer service, Events, Inventory, Issues, Lending library, Marketing projects, Projects, Sales pipeline, tasks, Time and billing, and Time card. Try It Suppose you want to download a database template to manage your customers' contact information. You decide to download the Contacts template. To complete the task 1. Click the Contacts template in the Business pane Access 2007 opens the Contacts pane. Once Access 2007 opens the Contacts pane, you can view the description of the template, the file size, and the rating. Graphic The Contacts Template pane includes the following details: Contacts: Create a contacts database to manage information about people that your team works with, such as customers and partners. Size: 382KB (One minute at 56 kilobytes per second (Kbps)). Rating: Four out of five stars. Next you change the filename and select the file location. In this case, you change the filename to "Easy Nomad Travel - Contacts" and accept the default file location. Graphic The default file name is Contacts. You click Download to download the Contacts template. 21

22 Before you can download a template, Microsoft may need to check whether you are running genuine Microsoft Office software on your computer. To validate your version of Microsoft Office and download the template, you click Continue in the Microsoft Office Genuine Advantage dialog box. Access 2007 downloads the Contacts database template from the Microsoft Office web site. The database template "Easy Nomad Travel - Contacts" opens by default on the Home tab of the Ribbon. It contains an empty form named Contact List. You can now manually enter data, or paste data from another source. 4. Access database properties Like any other Microsoft Office file in the Microsoft Office suite, a database file has properties applied to it. Try It Suppose you have created the "Easy Nomad Travel - Contacts" database. You would like to view the file's properties using the Properties dialog box. To complete the task 1. Click the Microsoft Office button 2. Select Manage and click Database Properties Access 2007 opens the Properties dialog box. By default, the Properties dialog box is named according to the database. Databases created in Access 2007 have the file extension.accdb, whereas earlier Access versions save databases with the extension.mdb. Graphic In this case, the Properties dialog box is named "Easy Nomad Travel - Contacts.accdb Properties." The Properties dialog box has five tabbed pages. General 22

23 The General tabbed page provides you with key information about a database. This includes the database name, type, size, location, date of creation, and attributes. Summary The Summary tabbed page provides you with information such as the database title, the author's name, and keywords. Access 2007 opens this tab by default. Statistics The Statistics tabbed page details the dates the database was created, modified, and last accessed. Contents The Contents tabbed page lists the contents of the database. This includes the entire set of tables, queries, forms, and reports in the database. Custom You can use the Custom tabbed page to define your own properties or select one from a list. You can select a property name, select the type, enter a value, and add it to the list of properties. Once you have viewed the properties of the file, you close the dialog box by clicking OK. This returns you to the Easy Nomad Travel - Contacts database. You should keep the following restrictions in mind when building a database in Access 2007: the maximum size of a database file is approximately 2 gigabytes the maximum number of objects in a database is 32,768 the maximum number of characters in an object name is 64 the maximum number of concurrent users is 255 Summary Access 2007 enables you to create a database using a blank database or a database template. You can create a blank database from scratch. A blank database does not contain any objects. This is useful if you want to design your own database, and build your own tables, queries, forms, and reports. Once all the database objects you need are created, 23

24 you can enter data manually or import it from another source, such as Excel. You can also create a database from a predefined template. Predefined templates contain predefined tables, queries, forms, and reports. You can use a local template or you can download a template from the Microsoft Office web site. When you create a new database, it is represented by a database file with the extension.accdb. The Database Properties dialog box displays key information on the active database file. 24

Getting Started with Access 2007

Getting Started with Access 2007 Getting Started with Access 2007 1 A database is an organized collection of information about a subject. Examples of databases include an address book, the telephone book, or a filing cabinet full of documents

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Planning and Creating a Custom Database

Planning and Creating a Custom Database Planning and Creating a Custom Database Introduction The Microsoft Office Access 00 database wizards make creating databases easy, but you may need to create a database that does not fit any of the predefined

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

Reduced Quality Sample

Reduced Quality Sample Access 2007 Essentials PART ONE Mobile MOUSe Access 2007 Essentials Version # 1.1 Part One 08/08/2010 11:20 About this Course Microsoft Access is the database application included with Microsoft Office.

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

User Services. Microsoft Access 2003 II. Use the new Microsoft

User Services. Microsoft Access 2003 II. Use the new Microsoft User Services July 2007 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet Create Relationships Create a Form with a Subform Create Action Queries Create Command Buttons Create a

More information

Use Find & Replace Commands under Home tab to search and replace data.

Use Find & Replace Commands under Home tab to search and replace data. Microsoft Access 2: Managing Data in Tables and Creating Relationships You have created tables in an Access database. Data in Access tables can be added, deleted, and updated to be current (practiced in

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

Importing Contacts to Outlook

Importing Contacts to Outlook Importing Contacts to Outlook 1. The first step is to create a file of your contacts from the National Chapter Database. 2. You create this file under Reporting, Multiple. You will follow steps 1 and 2

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

More information

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 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

More information

Creating Reports with Smart View s Ad Hoc Analysis

Creating Reports with Smart View s Ad Hoc Analysis with Smart View s Ad Hoc Analysis Dartmouth College February 10, 2009 Table of Contents Overview... 3 Connecting to the Reporting Cube... 3 Setting Ad Hoc Options... 3 The Ad Hoc Grid... 4 Selecting Members

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 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

Consider the possible problems with storing the following data in a spreadsheet:

Consider the possible problems with storing the following data in a spreadsheet: Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a

More information

Create Database Tables 2

Create Database Tables 2 Create Database Tables 2 LESSON SKILL MATRIX Skill Exam Objective Objective Number Creating a Database Creating a Table Saving a Database Object Create databases using templates Create new databases Create

More information

Excel 2007 Basic knowledge

Excel 2007 Basic knowledge Ribbon menu The Ribbon menu system with tabs for various Excel commands. This Ribbon system replaces the traditional menus used with Excel 2003. Above the Ribbon in the upper-left corner is the Microsoft

More information

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH:

PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: PROJECT ON MICROSOFT ACCESS (HOME TAB AND EXTERNAL DATA TAB) SUBMITTED BY: SUBMITTED TO: NAME: ROLL NO: REGN NO: BATCH: INDEX Microsoft Access- An Overview 2 Datasheet view 4 Create a Table in Datasheet

More information

Lab 2: MS ACCESS Tables

Lab 2: MS ACCESS Tables Lab 2: MS ACCESS Tables Summary Introduction to Tables and How to Build a New Database Creating Tables in Datasheet View and Design View Working with Data on Sorting and Filtering 1. Introduction Creating

More information

Task Force on Technology / EXCEL

Task Force on Technology / EXCEL Task Force on Technology EXCEL Basic terminology Spreadsheet A spreadsheet is an electronic document that stores various types of data. There are vertical columns and horizontal rows. A cell is where the

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 1 Creating a Database Microsoft Office 2010 Objectives Learn basic database concepts and terms Explore the Microsoft Access window and Backstage view Create a blank database Create and

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Module B. Key Applications Using Microsoft Office 2010

Module B. Key Applications Using Microsoft Office 2010 Module B Key Applications Using Microsoft Office 2010 Unit 3: Common Elements Key Applications The Key Applications exam includes questions covering three applications (word processing, spreadsheet and

More information

Advanced Presentation Features and Animation

Advanced Presentation Features and Animation There are three features that you should remember as you work within PowerPoint 2007: the Microsoft Office Button, the Quick Access Toolbar, and the Ribbon. The function of these features will be more

More information

Introduction to Microsoft Access XP

Introduction to Microsoft Access XP Introduction to Microsoft Access XP Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. An address book or a library

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 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 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700

ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700 Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 training@csun.edu TABLE OF CONTENTS Introduction... 1 Import Excel

More information

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior.

Table and field properties Tables and fields also have properties that you can set to control their characteristics or behavior. Create a table When you create a database, you store your data in tables subject-based lists that contain rows and columns. For instance, you can create a Contacts table to store a list of names, addresses,

More information

Section DB DATABASE - Microsoft Access

Section DB DATABASE - Microsoft Access Section DB DATABASE - Microsoft Access About Access 2007 Access 2007 is part of Microsoft Office 2007. It is an important productivity tool for business. Microsoft Access provides an inexpensive yet powerful

More information

MICROSOFT OFFICE ACCESS 2007 - LEVEL 1

MICROSOFT OFFICE ACCESS 2007 - LEVEL 1 MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - LEVEL 1 Exploring Access Creating Tables Working with Tables Editing Tables Finding and Filtering Data Printing Data Creating Relationships Using Simple

More information

IN THIS PROJECT, YOU LEARN HOW TO

IN THIS PROJECT, YOU LEARN HOW TO UNIT 2 PROJECT 11 CREATING A CUSTOMIZED DATABASE IN THIS PROJECT, YOU LEARN HOW TO Examine a Database and Its Objects Create Tables and Set Field Properties in Design View Create Relationships Add and

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0

ECDL. European Computer Driving Licence. Database Software BCS ITQ Level 1. Syllabus Version 1.0 ECDL European Computer Driving Licence Database Software BCS ITQ Level 1 Using Microsoft Access 2013 Syllabus Version 1.0 This training, which has been approved by BCS, includes exercise items intended

More information

Microsoft Access 2007 Module 1

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

More information

Access Tutorial 1 Creating a Database. Microsoft Office 2013 Enhanced

Access Tutorial 1 Creating a Database. Microsoft Office 2013 Enhanced Access Tutorial 1 Creating a Database Microsoft Office 2013 Enhanced Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage

More information

DCA. Document Control & Archiving USER S GUIDE

DCA. Document Control & Archiving USER S GUIDE DCA Document Control & Archiving USER S GUIDE Decision Management International, Inc. 1111 Third Street West Suite 250 Bradenton, FL 34205 Phone 800-530-0803 FAX 941-744-0314 www.dmius.com Copyright 2002,

More information

ICP Data Entry Module Training document. HHC Data Entry Module Training Document

ICP Data Entry Module Training document. HHC Data Entry Module Training Document HHC Data Entry Module Training Document Contents 1. Introduction... 4 1.1 About this Guide... 4 1.2 Scope... 4 2. Step for testing HHC Data Entry Module.. Error! Bookmark not defined. STEP 1 : ICP HHC

More information

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5

Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 Introduction To Microsoft Office PowerPoint 2007. Bob Booth July 2008 AP-PPT5 University of Sheffield Contents 1. INTRODUCTION... 3 2. GETTING STARTED... 4 2.1 STARTING POWERPOINT... 4 3. THE USER INTERFACE...

More information

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame...

Contents. Launching FrontPage... 3. Working with the FrontPage Interface... 3 View Options... 4 The Folders List... 5 The Page View Frame... Using Microsoft Office 2003 Introduction to FrontPage Handout INFORMATION TECHNOLOGY SERVICES California State University, Los Angeles Version 1.0 Fall 2005 Contents Launching FrontPage... 3 Working with

More information

bjectives After you read this chapter, you will be able to:

bjectives After you read this chapter, you will be able to: Exp_Off_Fun_CH01.qxd 12/17/07 1:49 PM Page 1 Using Word, Excel, Access, and PowerPoint bjectives After you read this chapter, you will be able to: 1. Identify common interface components (page 4). 2. Use

More information

Creating and Using Forms in SharePoint

Creating and Using Forms in SharePoint Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete:

Excel basics. Before you begin. What you'll learn. Requirements. Estimated time to complete: Excel basics Excel is a powerful spreadsheet and data analysis application, but to use it most effectively, you first have to understand the basics. This tutorial introduces some of the tasks and features

More information

What is a Mail Merge?

What is a Mail Merge? NDUS Training and Documentation What is a Mail Merge? A mail merge is generally used to personalize form letters, to produce mailing labels and for mass mailings. A mail merge can be very helpful if you

More information

To determine the fields in a table decide what you need to know about the subject. Here are a few tips:

To determine the fields in a table decide what you need to know about the subject. Here are a few tips: Access Introduction Microsoft Access is a relational database software product that you can use to organize your data. What is a "database"? A database is an integrated collection of data that shares some

More information

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View

Excel 2013 What s New. Introduction. Modified Backstage View. Viewing the Backstage. Process Summary Introduction. Modified Backstage View Excel 03 What s New Introduction Microsoft Excel 03 has undergone some slight user interface (UI) enhancements while still keeping a similar look and feel to Microsoft Excel 00. In this self-help document,

More information

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010

Produced by Flinders University Centre for Educational ICT. PivotTables Excel 2010 Produced by Flinders University Centre for Educational ICT PivotTables Excel 2010 CONTENTS Layout... 1 The Ribbon Bar... 2 Minimising the Ribbon Bar... 2 The File Tab... 3 What the Commands and Buttons

More information

Cascade Server CMS Quick Start Guide

Cascade Server CMS Quick Start Guide Cascade Server CMS Quick Start Guide 1. How to log in 2. How to open page 3. How to edit a page 4. How to create a new page 5. How to publish a page 6. How to change settings to view publish status page

More information

Microsoft Excel 2013: Using a Data Entry Form

Microsoft Excel 2013: Using a Data Entry Form Microsoft Excel 2013: Using a Data Entry Form Using Excel's built in data entry form is a quick and easy way to enter data into an Excel database. Using the form allows you to: start a new database table

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

Creating tables in Microsoft Access 2007

Creating tables in Microsoft Access 2007 Platform: Windows PC Ref no: USER 164 Date: 25 th October 2007 Version: 1 Authors: D.R.Sheward, C.L.Napier Creating tables in Microsoft Access 2007 The aim of this guide is to provide information on using

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

Decision Support AITS University Administration. EDDIE 4.1 User Guide

Decision Support AITS University Administration. EDDIE 4.1 User Guide Decision Support AITS University Administration EDDIE 4.1 User Guide 2 P a g e EDDIE (BI Launch Pad) 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

Basic Microsoft Excel 2007

Basic Microsoft Excel 2007 Basic Microsoft Excel 2007 The biggest difference between Excel 2007 and its predecessors is the new layout. All of the old functions are still there (with some new additions), but they are now located

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

How To Understand The Basic Concepts Of A Database And Data Science

How To Understand The Basic Concepts Of A Database And Data Science Database Concepts Using Microsoft Access lab 9 Objectives: Upon successful completion of Lab 9, you will be able to Understand fundamental concepts including database, table, record, field, field name,

More information

Creating Database Tables in Microsoft SQL Server

Creating Database Tables in Microsoft SQL Server Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are

More information

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB

INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,

More information

Microsoft Access 2010- Introduction

Microsoft Access 2010- Introduction Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

Check out our website!

Check out our website! Check out our website! www.nvcc.edu/woodbr idge/computer-lab Contact Us Location: Open Computer Lab Seefeldt Building #336 NOVA Woodbridge Campus Hussna Azamy (OCL Supervisor) Phone: 703-878-5714 E-mail:

More information

Microsoft PowerPoint 2008

Microsoft PowerPoint 2008 Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...

More information

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins)

Lesson 07: MS ACCESS - Handout. Introduction to database (30 mins) Lesson 07: MS ACCESS - Handout Handout Introduction to database (30 mins) Microsoft Access is a database application. A database is a collection of related information put together in database objects.

More information

Microsoft Office System Tip Sheet

Microsoft Office System Tip Sheet The 2007 Microsoft Office System The 2007 Microsoft Office system is a complete set of desktop and server software that can help streamline the way you and your people do business. This latest release

More information

Access Tutorial 1 Creating a Database

Access Tutorial 1 Creating a Database Access Tutorial 1 Creating a Database Microsoft Office 2013 Objectives Session 1.1 Learn basic database concepts and terms Start and exit Access Explore the Microsoft Access window and Backstage view Create

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Microsoft Outlook 2010 Part 1: Introduction to Outlook

Microsoft Outlook 2010 Part 1: Introduction to Outlook CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Outlook 2010 Part 1: Introduction to Outlook Spring 2012, Version 1.0 Table of Contents Introduction...3 Starting the

More information

Quick Start Guide. Highly customizable automated trading Automate your trades according to rules and models you create.

Quick Start Guide. Highly customizable automated trading Automate your trades according to rules and models you create. POWER E*TRADE PRO EXCEL MANAGER Quick Start Guide We are pleased to announce the launch of Excel Manager, an exciting new feature in Power E*TRADE Pro that leverages the flexibility of Microsoft Excel

More information

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES MODULE 2: SMARTLIST, REPORTS AND INQUIRIES Module Overview SmartLists are used to access accounting data. Information, such as customer and vendor records can be accessed from key tables. The SmartList

More information

Access 2007 Creating Forms Table of Contents

Access 2007 Creating Forms Table of Contents Access 2007 Creating Forms Table of Contents CREATING FORMS IN ACCESS 2007... 3 UNDERSTAND LAYOUT VIEW AND DESIGN VIEW... 3 LAYOUT VIEW... 3 DESIGN VIEW... 3 UNDERSTAND CONTROLS... 4 BOUND CONTROL... 4

More information

Information Technology Services Kennesaw State University

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

More information

Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams

Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams ASW_MBS_Primer_Web.qxd 11/1/07 1:41 PM Page 1 Microsoft Excel 2007 and Tools for Statistical Analysis David R. Anderson, Dennis J. Sweeney, and Thomas A. Williams Microsoft Excel 2007, part of the Microsoft

More information

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training

warpct.com MS Access 2010 Workbook courseware by WARP! Computer Training warpct.com courseware by WARP! Computer Training MS Access 2010 Workbook Welcome! Thank you for evaluating a portion of this workbook. If you have any questions or comments regarding our training materials

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007

Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007 David M. Kroenke and David J. Auer Database Concepts (3 rd Edition) APPENDIX D Getting Started with Microsoft Access 2007 Prepared by David J. Auer Western Washington University Page D-1 Microsoft product

More information

Introduction to Microsoft Access 2007

Introduction to Microsoft Access 2007 Introduction to Microsoft Access 2007 Introduction A database is a collection of information that's related. Access allows you to manage your information in one database file. Within Access there are four

More information

Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout

Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout Microsoft Office 2007 Orientation Objective 1: Become acquainted with the Microsoft Office Suite 2007 Layout Microsoft Suite 2007 offers a new user interface. The top portion of the window has a new structure

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail.

The first thing to do is choose if you are creating a mail merge for printing or an e-mail merge for distribution over e-mail. Create a mail or e-mail merge Use mail or e-mail merge when you want to create a large number of documents that are mostly identical but include some unique information. For example, you can use mail merge

More information

Microsoft Outlook 2013 Part 1: Introduction to Outlook

Microsoft Outlook 2013 Part 1: Introduction to Outlook CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Outlook 2013 Part 1: Introduction to Outlook Fall 2014, Version 1.0 Table of Contents Introduction...3 Starting Outlook...3

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

MICROSOFT ACCESS 2007 BOOK 2

MICROSOFT ACCESS 2007 BOOK 2 MICROSOFT ACCESS 2007 BOOK 2 4.1 INTRODUCTION TO ACCESS FIRST ENCOUNTER WITH ACCESS 2007 P 205 Access is activated by means of Start, Programs, Microsoft Access or clicking on the icon. The window opened

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Tutorial 3 Maintaining and Querying a Database

Tutorial 3 Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2013 Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the Query window in

More information

Using Microsoft Excel 2010

Using Microsoft Excel 2010 Unit 5 Using Microsoft Excel 2010 Unit Objectives This unit includes the knowledge and skills required to analyze information in an electronic worksheet and to format information using functions specific

More information

Microsoft Access 2010 Overview of Basics

Microsoft Access 2010 Overview of Basics Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create

More information

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences

Database File. Table. Field. Datatype. Value. Department of Computer and Mathematical Sciences Unit 4 Introduction to Spreadsheet and Database, pages 1 of 12 Department of Computer and Mathematical Sciences CS 1305 Intro to Computer Technology 15 Module 15: Introduction to Microsoft Access Objectives:

More information

Microsoft Office 2007: What s New in Access

Microsoft Office 2007: What s New in Access Microsoft Office 2007: What s New in Access Windows Microsoft Office 2007: What s New in Access v1.0.1 2008 36 Pages About IT Training & Education The University Information Technology Services (UITS)

More information

Chapter 5. Microsoft Access

Chapter 5. Microsoft Access Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,

More information

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced

Access Tutorial 3 Maintaining and Querying a Database. Microsoft Office 2013 Enhanced Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2013 Enhanced Objectives Session 3.1 Find, modify, and delete records in a table Hide and unhide fields in a datasheet Work in the

More information