IS 312, Information Systems for Business Database Project in Access

Size: px
Start display at page:

Download "IS 312, Information Systems for Business Database Project in Access"

Transcription

1 IS 312, Information Systems for Business Database Project in Access Department of Accounting & Information Systems College of Business & Economics by David W. Miller, Ph.D. This document created and for exclusive use by students in the above identified course. No other use of this document is authorized without the consent of the author. The document was last updated on November 17, INTRODUCTION: This assignment is based on a fictitious small business the Coffee Roasting Company (CRC). CRC produces and sells gourmet coffees to institutional customers (i.e., restaurants and coffee houses). CRC buys green (i.e., raw) coffee beans from various suppliers, combines them in varying quantities and roasts the beans creating the finished goods inventory of mixes. Quantities of the mixes are then packaged based on sales orders from standing customers. A database has been created that records transactions related to these activities. You are provided with a copy of the database to use for analysis. You will conduct analyses creating queries to search the database for information to answer questions that are posed to you below. DATABASE OVERVIEW: The entity-relationship diagram depicted in Figure 1 shows the entities (tables), attributes (fields) and their relationships for the CRC database. There are three major components or areas to the database: sales, purchases, and production note that there is overlap between the areas. The tables contained within the yellow border are the sales component and include data on customers, their business locations (restaurants), sales orders (invoices and items sold), and sales inventory. Tables contained within the red border are of the purchasing component and includes data on suppliers of the materials used in production, the locations that suppliers ship from, purchase orders (materials purchased), and materials inventory. Within the blue border are tables of the production component including the production schedule and the materials needed to make each product as well as manufacturing-materials and finishedgoods inventories. As you examine the database structures you will notice that the sales and purchasing components are near-mirror images of one another. The basic data structures are quite similar with the primary difference being the flow of the data. In the sales component, data flows into CRC in the form of sales orders from customers and product flows out to restaurants. On the purchasing side, data flows out in the form of purchase orders and materials flow in from suppliers. ASSIGNMENT OVERVIEW: You will download the Coffee_Roasting_Company.zip folder which is in compressed (zipped) folder format. This folder contains the database file, Coffee_Roasting_Company.accdb, a Microsoft Access database file. You will need to extract the files from the compressed format before you can do any work with them. The database file is in Microsoft Access 2007 format. You may complete the project using either MS Access 2007, 2010, or later. These instructions are written for the MS Windows 7/Access 2013 environment. I have not created instructions specific to any other MS Windows environment. However, there is a great deal of similarity between the instructions that I have provided and the other Windows environments such that you should not have difficulty adjusting them to those environments. Contact me for assistance if you do have difficulty.

2 The database contains fifteen data tables. The tables meet the specifications designated in the CRC_DataDictionary.pdf document (note that if you find discrepancies between the table structures and their definitions in the Data Dictionary, the structures in the database are the default values). You are to use the query capabilities of Microsoft Access to create queries as directed in the sections below. The queries select fields from tables and limit the number of rows you look at. You will also use the aggregate (Totals) function to group data for certain queries. Finally, you will need to create fields in queries from expressions (formulas) combining data from different fields in tables. Figure 1. Entity-Relationship Diagram (E-RD) for CRC Database GETTING STARTED: What follows is a self-guided tutorial of Microsoft s Access database management application in how to query the data and provides problems to test your understanding of the skills learned in the tutorial. Download the database files: Download and save to disk the Coffee_Roasting_Company.zip folder which is in compressed (zipped) folder format. This folder contains the Coffee_Roasting_Company.accdb Microsoft Access database file. Extract the database files once you have saved the folder to your computer, simply double-click on the folder, click the Extract all files option in the Folder Tasks section of the dialog to launch the Extraction Wizard. Follow the instructions in the wizard to extract (un-zip) the files. The database file is in Microsoft Access 2007 (current) format. You may complete the project using any version of MS Access that will accept this file format. Open the database file: Open Access and the Coffee_Roasting_Company.accdb database file. Access Database Project Page 2 of 9

3 QUERY TUTORIAL: The data contained in the tables of the database can be queried to manipulate and process the data into meaningful information. There are a number of different query operations that can be easily created in Access that will manipulate the data in different ways. This section provides tutorials of how to create basic queries from the CRC database to be included in your project. Create a simple Select Query with a Join condition: Create a query that will display the shipping address, shipping zip code, and the contact name for each customer. Select the All Access Objects option from the drop-down list of the Navigation pane (if not already selected). You will create this query in Design View so select the Create tab and the Query Design icon. The query Design View will be launched and the Show Table dialog will be displayed. The data that you need for this query is contained in the Customer and Restaurant tables. Add these tables to the query design. Note the line and symbols indicating the relationship between the tables. If selecting tables that are not directly related, it would necessary to add the other tables needed to make the (indirect) connection between the tables. Add the fields from the table in the order in which you want the columns to appear in your query results. CustName CustShipAddr CustShipCSZ CustContact Save the query as 01 Customer Shipping Address. Note: be sure to number the queries in the order in which they appear in the instructions Execute the query by clicking on the Run (exclamation mark) icon. The Datasheet view of the query should display 33 records (corresponding to the number of records in the Restaurant table). Add a single criterion to a Select Query: Create a query that will display all of the customers names and the contact person and phone number for those customers with a discount greater than five percent. Begin by creating the query in design view. All of the fields needed for this query are contained in the Customer table, so add only that table to the query. Add the desired fields to the query in the order in which you want the columns to appear. CustName CustDiscount CustContact CustPhone Access Database Project Page 3 of 9

4 Add criteria to the CustDiscount column to limit the data to those values that are greater than.05 (5%). Note that this will not include those customers whose discount rate is exactly 5.0%. Run the query. There will be ten records displayed in the Datasheet view of the query. Save the query. Name the query 02 Customers with High Discount Rates. Queries with multiple criteria: There are two logical functions that can determine the results of your query. The AND logical function will limit your results to only those records that meet all of the criteria you have entered. The OR logical function will increase your results, giving you all of the records that meet each of the criteria that you have entered. Using the AND logical function Create a query that lists all of the Regular Mix varieties that are greater than five dollars. Begin by creating the query in design view. All of the fields needed for this query are contained in the Mix table, so add only that table to the query. Add the desired fields to the query in the order in which you want the columns to appear. MixName MixVariety MixBasePrice Add criteria to the MixVariety column to limit the data to those values that are Regular. Add criteria to the MixBasePrice column to limit that data to those values that are greater than $5.00. Note that this criterion is entered on the same row as the MixVariety criteria. Run the query. There will be two records displayed in the Datasheet view of the query. Save the query. Name the query 03 Regular Mixes Greater Than $5. Using the OR logical function Create a query that lists all of the Regular Mix varieties as well as all Mixes that are greater than five dollars. Begin by creating the query in design view. All of the fields needed for this query are contained in the Mix table, so add only that table to the query. Add the desired fields to the query in the order in which you want the columns to appear. MixName MixVariety MixBasePrice Add criteria to the MixVariety column to limit the data to those values that are Regular. On a separate row, add criteria to the MixBasePrice column to limit that data to those values that are greater than $5.00. Note that this criterion is entered on a different row from the MixVariety criterion. Run the query. There will be seven records displayed in the Datasheet view of the query. Access Database Project Page 4 of 9

5 Save the query. Name the query 04 Regular Mixes and Greater Than $5. Create a Query that uses aggregate functions: Create a query that shows the total quantity sold and the average unit price for each mix variety. Begin by creating the query in design view. All of the fields needed for this query are contained in the Mix and Sales Order Item tables, so add these tables to the query. Add the desired fields to the query in the order in which you want the columns to appear. MixVariety QtySold UnitPrice Select the Totals function (the epsilon,, on the Design ribbon). Note that a Total: row has been added to the query and that each field displays Group By. Since the MixVariety field is in the first column the query results will be grouped on each unique instance of a variety in the Mix table. Therefore, leave the Totals value as Group By. The QtySold field is to be the total sold for each variety of mix, so set the Total: row value to Sum. Right-click anywhere in the QtySold column and select Properties from the menu. Change the Caption to Total Quantity Sold. The UnitPrice field is to be the average of the unit price for each variety of mix sold, so set the Total: row value to Avg. Right-click anywhere in the UnitPrice column and select Properties from the menu. Change the Caption to Average Unit Price thus providing a column (field) heading that is more easily read. Run the query. There will be four records displayed in the Datasheet view of the query. Resize the columns so that the full column names are visible. Save the query as 05 Sales by Mix Variety. Add an Expression (Calculated Field) to a Query: Modify the Sales by Mix Variety query to add fields that calculate the total and average sales per Mix Variety. Begin by opening the Sales by Mix Variety query in design view. Position the insertion point in the blank Field text box to the right of the UnitPrice field, and then click the Build button on the tool bar. The Expression Builder dialog box opens. The expression elements help you build an expression. Note that the Sales by Mix Variety query is already selected in the left expression element list. The fields within that query are listed in the center expression element list. Access Database Project Page 5 of 9

6 To calculate the total and average sales for each Mix Variety, you will need to multiply the UnitPrice by the QtySold. You will need to navigate within the Expression dialog expression element list to the table containing those fields (Sales Order Item). You will then need to insert the fields into the expression box along with the appropriate arithmetic operators. Expand the Coffee_Roasting_Company.accdb folder in the list in the left expression element list by clicking on the + Expand the Tables folder in the list in the left expression element list by clicking on the +. Scroll down the list until you see the Sales Order Item table and click on it. A list of the fields will be displayed. Select the UnitPrice field name and click the Paste button, [Sales Order Item]![UnitPrice] will be displayed in the expression box. Type the * for multiplication, then select the QtySold field name and click the Paste button. The expression is complete with [Sales Order Item]![UnitPrice] * [Sales Order Item]![QtySold] displayed in the expression box. Click the OK button to close the Expression Builder dialog. Since you are asked to do two operations (sum and average), you need to add another expression field. Follow the above instructions to add the same expression to the next field column of the query. Now that you have the two expressions needed to multiply UnitPrice by QtySold, you need to set the proper aggregate functions to give you the total and average values as well as add captions for each field. Position the insertion point in the Total: text box of the first expression field. Open the list of aggregate functions. This first expression will be the total sales per Mix Variety, so select the Sum function from the list. Right-click anywhere in the field area for this expression and select Properties from the menu. Enter the caption Total Sales. Position the insertion point in the Total: text box of the second expression field. Open the list of aggregate functions. This second expression will be the average sales per Mix Variety, so select the Avg function from the list. Right-click anywhere in the field area for this expression and select Properties from the menu. Enter the caption Average Sales. Run the query. The results should be similar to those in the following figure. Save the query by clicking on the Office Button, then Save As from Access Database Project Page 6 of 9

7 the menu bar and save the query as 06 Aggregate Sales by Mix Variety. ADDITIONAL QUERIES: You have acquired the basic skill set needed to create queries in Microsoft Access. Use those skills to complete the remaining queries in the project. The details of the instructions will diminish and/or the complexity of the queries will increase as you progress through this section and, presumably, your skills with Microsoft Access improve. Sales per Customer Query: Create a query to provide information on the sales volume for each of the customers CRC does the business with. From the Customers table, you need the Customers names and from the Sales Order Item table, you need the quantity sold. Note that that there is no relationship line between these two tables meaning that there is no direct relationship between them. You will have to add the Sales Order table to the query to provide a relationship path between the Customers and Sales Order Item tables, even though you are not using any fields from the Sales Order table. Create an expression in the third query field that will compute the sales price for each item sold. Multiply the QtySold times the UnitPrice from the Sales Order Item table. Use the aggregate (Totals) function to group on the Customers names and provide the total quantity sold and total sales for each customer. Sort the data in descending order on the total sales. Be sure to add appropriate captions to the aggregated and calculated fields. Save the query naming it: 07 Sales per Customer. Sales per Restaurant Query: Create a query that shows the amount of sales CRC received for each restaurant (individual locations CRC shipped goods to). The key to this query is realizing that some customers have more than one restaurant and that CRC delivers directly to the restaurant location and not the Customers billing addresses. The query needs the Shipping Address from the Restaurant table, the Customer Name from the Customer table and the quantity sold from the Sales Order Item table. Again, you need to include the Sales Order table in the query to provide the path between the Sales Order Item and Customer tables. Create an expression in the fourth query field that will compute the total sales amount for each restaurant. Group on the Shipping Address and sort descending on the Total Sales field. Be sure to add appropriate captions to the aggregated and calculated fields. Save the query naming it: 08 Sales per Restaurant. Sales per Mix Query: Create a query to let us compare the goods (mixes) sold in terms of the quantity sold and sales amount. The query needs the Mix Name for the Mix table and the Quantity Sold from Sales Order Item table. It also needs a calculated field (an expression) that shows the mixes in terms of the sales price. Make sure that all of the tables added to the query have a path that relates all of the tables in the query. Do you need to add more tables? Use appropriate grouping and sorting for the query. Save the query naming it: 09 Sales per Mix. Access Database Project Page 7 of 9

8 Purchases per Bean Query: Using the same sort of procedures described for queries 07 through 09 above, create a query that compares the Production Materials (Beans) that had been purchased. Note that the structure of the tables on the purchasing (materials, i.e., Bean) side of the database are similar to the table sales (finished goods, i.e., Mix) side. Meaning, that the data structures between the purchases and sales sides of the database (see Figure 1) are very similar; the main difference is in the direction of the data flow. On the sales side, data flows in (in the form of orders) and finished goods (mixes) flow out. On the purchases side, data flows out (in the form of purchase orders) and materials (beans) flow in. The data at rest (i.e., data stored in the database) is very similar between the sales and purchases sides of the database. Therefore, for this query, you should see a query from the sales side of the database that is looking at similar data to the question posed for this query. Save the query naming it: 10 Purchases per Bean. Purchases per Supplier Query: Using the same sort of procedures described for queries 07 through 09 above, create a query that compares the Suppliers CRC purchases Production Materials (Beans) from. Save the query naming it: 11 Purchases per Supplier. Minimum Inventory Levels Query: Create a query that displays the amount that goods (Mixes) CRC sells are above or below the minimum inventory level (level at which more mix is ordered from production) on the last inventory date for each mix that CRC sells. The Mix table contains a field (MixMinLevel) that contains data on the minimum allowable inventory level before product is reordered also known as the reorder point. You need an expression that shows the amount that the quantity of mix on hand is above (or below) the reorder point for the last inventory date for each type of mix sold. Note that of the aggregate (Totals) functions, this is one called Last that will return the last (most recent) value of a series within a field. Save the query naming it: 12 Mix Minimum Inventory Levels Ordered Mix On Hand Query: These last two queries investigate a hypothetical Finished Goods and Materials inventory problem. Let s say that on November 19 CRC receives an order from its best customer for the following types and quantities to be delivered by November 23: 200 lbs. of French Roast 150 lbs. of French Roast Decaf 50 lbs. of Colombian Dark The first query needs to see if there is sufficient quantity of goods (Mix) on hand to satisfy the order. The order fulfillment process requires that the stored Mix be ground and packed and shipped to customers at least one day before it is scheduled to arrive, meaning that you want to know how much of each type of product is scheduled to be available for shipment (on hand) on the shipping date. So, you will want a query that will return the amount of each variety of coffee ordered on hand (MixOH) on 3/22/2014 (MixInvDate) the day before it is to be received by the customer. Save the query naming it: 13 Ordered Mix On Hand, 11/22/2014 Note the amount scheduled to be on hand. Is it enough to satisfy the order? Check Production Inventory Query: There would be little point in asking the question if there were enough on hand to satisfy the order; meaning that, at least one of the varieties ordered will not have a sufficient quantity in finished goods inventory to satisfy the order. Therefore, you will need to see if there is enough Bean inventory Access Database Project Page 8 of 9

9 scheduled to be on hand so that a batch of the coffee with the deficient quantity can be produced to satisfy the order. The production process requires one day to mix and roast the beans with the beans needing to be in materials inventory the day before production. Therefore, production needs to occur on November 21, meaning that the beans need to be in materials inventory on November 20 noting also, that if a sufficient quantity of each type of bean needed is not already scheduled to be in inventory on November 20, then CRC cannot fulfill the order because there is not sufficient time to order beans from a supplier. A production batch results in 1000 lbs. of Mix regardless of which Mix is being made or what amount of Beans are needed to make that batch. So, the next thing you will need to know is what Beans are needed to make a batch of the Mix in question. Create a query that searches the Bean to Mix table for the types and amounts of Beans needed to make a batch of the Mix in question and also searches the Bean Inventory table for the amount of Beans on hand (BeanOH). The query should also contain a field that compares the scheduled quantity on hand to the quantity needed for each Bean to quantity needed to make a batch of the Mix in question. Include the Bean to Mix Product, Bean and Bean Inventory tables in the query. Add the MixCode, BeanCode and BeanRequired fields from the Bean to Mix Product table. Add the BeanName field from the Bean table. Add the BeanInvDate and BeanOH fields from the Bean Inventory table. Add a calculated field that subtracts the Beans needed from the Beans scheduled to be on hand for each Bean Code needed to make a batch of the Mix in question. Use the aggregate (Totals) function selecting the Last function for the BeanInvDate, BeanOH and calculated field. Knowing that you are looking at the last inventory date before the production date, enter a criterion for the BeanInvDate of less than (<) 11/20/2014. You want to look only at those Beans in inventory needed to make a batch of the Mix in question so add a criterion to filter the results for only French Roast Mix. Save the query naming it: 14 Check Production Inventory. SUBMISSION INSTRUCTIONS: You are to turn in the completed Coffee_Roasting_Company.accdb database file including the queries you have created. Rename the file using your last name followed by your first name as the filename. For instance, the filename I would create would be MillerDavid.accdb (note that there is no space, comma, etc. in the file name). Note too, that if you do not have the folder option turned on to display the file extensions of known file types (that is the default setting so it is likely that this option is not on for your computer) then the.accdb file extension will not be displayed. Do not add the.accdb if you do not see file extensions when you look at the file name in Windows Explorer. Send the file as an attachment. Attached the file to an message and sent to your instructor at david.w.miller@csun.edu. (Remember, I do not have two address, dwm3265@csun.edu is the same mailbox, so do not send it twice.) Be sure to enter the following as the subject with the proper course number for your class: IS 312 Database File Failure to insert a proper subject can cause your database file to be misrouted and not be scored. the project file by the beginning time of class on the date identified on the course schedule page. Access Database Project Page 9 of 9

Tutorial 3. Maintaining and Querying a Database

Tutorial 3. Maintaining and Querying a Database Tutorial 3 Maintaining and Querying a Database Microsoft Access 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save queries

More information

Microsoft Office 2010

Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database Microsoft Office 2010 Objectives Find, modify, and delete records in a table Learn how to use the Query window in Design view Create, run, and save

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

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

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

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

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9

Query 4. Lesson Objectives 4. Review 5. Smart Query 5. Create a Smart Query 6. Create a Smart Query Definition from an Ad-hoc Query 9 TABLE OF CONTENTS Query 4 Lesson Objectives 4 Review 5 Smart Query 5 Create a Smart Query 6 Create a Smart Query Definition from an Ad-hoc Query 9 Query Functions and Features 13 Summarize Output Fields

More information

MS Excel Template Building and Mapping for Neat 5

MS Excel Template Building and Mapping for Neat 5 MS Excel Template Building and Mapping for Neat 5 Neat 5 provides the opportunity to export data directly from the Neat 5 program to an Excel template, entering in column information using receipts saved

More information

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES

MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - NEW FEATURES Exploring Access Creating and Working with Tables Finding and Filtering Data Working with Queries and Recordsets Working with Forms Working

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

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

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

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

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

MICROSOFT ACCESS STEP BY STEP GUIDE

MICROSOFT ACCESS STEP BY STEP GUIDE IGCSE ICT SECTION 11 DATA MANIPULATION MICROSOFT ACCESS STEP BY STEP GUIDE Mark Nicholls ICT Lounge P a g e 1 Contents Task 35 details Page 3 Opening a new Database. Page 4 Importing.csv file into the

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

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

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

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

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

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

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

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178

INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 INTRODUCTION to ESRI ARCGIS For Visualization, CPSC 178 1) Navigate to the C:/temp folder 2) Make a directory using your initials. 3) Use your web browser to navigate to www.library.yale.edu/mapcoll/ and

More information

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008

Microsoft Using an Existing Database Amarillo College Revision Date: July 30, 2008 Microsoft Amarillo College Revision Date: July 30, 2008 Table of Contents GENERAL INFORMATION... 1 TERMINOLOGY... 1 ADVANTAGES OF USING A DATABASE... 2 A DATABASE SHOULD CONTAIN:... 3 A DATABASE SHOULD

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

Don't have Outlook? Download and configure the Microsoft Office Suite (which includes Outlook)!

Don't have Outlook? Download and configure the Microsoft Office Suite (which includes Outlook)! UVa Exchange Service Outlook 2013 Quickstart Guide Don't have Outlook? Download and configure the Microsoft Office Suite (which includes Outlook)! In this Quickstart Guide, you will learn to: Send and

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

Business Warehouse Reporting Manual

Business Warehouse Reporting Manual Business Warehouse Reporting Manual This page is intentionally left blank. Table of Contents The Reporting System -----------------------------------------------------------------------------------------------------------------------------

More information

Getting Started with Excel 2008. Table of Contents

Getting Started with Excel 2008. Table of Contents Table of Contents Elements of An Excel Document... 2 Resizing and Hiding Columns and Rows... 3 Using Panes to Create Spreadsheet Headers... 3 Using the AutoFill Command... 4 Using AutoFill for Sequences...

More information

INTRODUCTION TO DATABASES USING MICROSOFT ACCESS

INTRODUCTION TO DATABASES USING MICROSOFT ACCESS INTRODUCTION TO DATABASES USING MICROSOFT ACCESS ILLUSTRATION GUIDE Introduction to Databases Using Microsoft Access Page 1 of 30 OVERVIEW The guide illustrates the step-by-step basics of creating and

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

Access 2007. Using Access

Access 2007. Using Access Access 2007 Using Access 1 Contents Introduction to Microsoft Access 2007... 3 Microsoft Access 2007 features 3 Opening a database 4 Database objects 5 Opening objects 6 Working with objects 6 Saving in

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

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

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

IST 195 Lab 11: MS Access

IST 195 Lab 11: MS Access Title of lab: Microsoft Access 2010 IST 195 Lab 11: MS Access Learning goal: Databases are collections of information, and database programs are designed to maintain data in structured tables. In this

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

Data Visualization. Brief Overview of ArcMap

Data Visualization. Brief Overview of ArcMap Data Visualization Prepared by Francisco Olivera, Ph.D., P.E., Srikanth Koka and Lauren Walker Department of Civil Engineering September 13, 2006 Contents: Brief Overview of ArcMap Goals of the Exercise

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

Objectives. Understand databases Create a database Create a table in Datasheet view Create a table in Design view

Objectives. Understand databases Create a database Create a table in Datasheet view Create a table in Design view Creating a Database Objectives Understand databases Create a database Create a table in Datasheet view Create a table in Design view 2 Objectives Modify a table and set properties Enter data in a table

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

Fig. 1 Suitable data for a Crosstab Query.

Fig. 1 Suitable data for a Crosstab Query. Crosstab Queries A Crosstab Query is a special kind of query that summarizes data by plotting one field against one or more other fields. Crosstab Queries can handle large amounts of data with ease and

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

GETTING STARTED WITH THE ALMYTA CONTROL SYSTEM

GETTING STARTED WITH THE ALMYTA CONTROL SYSTEM GETTING STARTED WITH THE ALMYTA CONTROL SYSTEM GETTING STARTED WITH THE ALMYTA CONTROL SYSTEM... 1 Starting Up... 2 Populating the Item Master List... 3 Populating dropdown lists... 4 Populating the Item

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

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu

IRA Pivot Table Review and Using Analyze to Modify Reports. For help, email Financial.Reports@dartmouth.edu IRA Pivot Table Review and Using Analyze to Modify Reports 1 What is a Pivot Table? A pivot table takes rows of detailed data (such as the lines in a downloadable table) and summarizes them at a higher

More information

Microsoft Excel 2010 Part 3: Advanced Excel

Microsoft Excel 2010 Part 3: Advanced Excel CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting

More information

Getting Started with Access 2007

Getting Started with Access 2007 Getting Started with Access 2007 Table of Contents Getting Started with Access 2007... 1 Plan an Access 2007 Database... 2 Learning Objective... 2 1. Introduction to databases... 2 2. Planning a database...

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS.

2. Unzip the file using a program that supports long filenames, such as WinZip. Do not use DOS. Using the TestTrack ODBC Driver The read-only driver can be used to query project data using ODBC-compatible products such as Crystal Reports or Microsoft Access. You cannot enter data using the ODBC driver;

More information

Access 2007. Queries

Access 2007. Queries Access 2007 Queries WORKSHOP DESCRIPTION... 1 Overview 1 Prerequisites 1 Objectives 1 WHAT IS A QUERY?... 2 WHY USE QUERIES?... 2 TERMS TO KNOW... 2 Select Queries 2 Action Queries 2 Crosstab Queries

More information

Database Applications Microsoft Access

Database Applications Microsoft Access Lesson 1 Tutorial 1 Database Applications Microsoft Access Lesson 1 Introduction For Lesson 1, you will work through Tutorial 1 in your textbook. The tutorial may expose you to more information than is

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP

Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Microsoft Excel 2007 Consolidate Data & Analyze with Pivot Table Windows XP Consolidate Data in Multiple Worksheets Example data is saved under Consolidation.xlsx workbook under ProductA through ProductD

More information

Welcome to the topic on Master Data and Documents.

Welcome to the topic on Master Data and Documents. Welcome to the topic on Master Data and Documents. In this topic, we will look at master data in SAP Business One. After this session you will be able to view a customer record to explain the concept of

More information

Netmail Search for Outlook 2010

Netmail Search for Outlook 2010 Netmail Search for Outlook 2010 Quick Reference Guide Netmail Search is an easy-to-use web-based electronic discovery tool that allows you to easily search, sort, retrieve, view, and manage your archived

More information

Pastel Evolution BIC. Getting Started Guide

Pastel Evolution BIC. Getting Started Guide Pastel Evolution BIC Getting Started Guide Table of Contents System Requirements... 4 How it Works... 5 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Evolution (BIC) Reports...

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

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

Creating a Database using Access 2007

Creating a Database using Access 2007 Creating a Database using Access 2007 Starting Access 2007 Double click on the Access 2007 icon on the Windows desktop (see right), or click-on the Start button in the lower left corner of the screen,

More information

Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS...

Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS... Access 2010: Creating Queries Table of Contents INTRODUCTION TO QUERIES... 2 QUERY JOINS... 2 INNER JOINS... 3 OUTER JOINS... 3 CHANGE A JOIN PROPERTY... 4 REMOVING A JOIN... 4 CREATE QUERIES... 4 THE

More information

Microsoft Access 2007

Microsoft Access 2007 How to Use: Microsoft Access 2007 Microsoft Office Access is a powerful tool used to create and format databases. Databases allow information to be organized in rows and tables, where queries can be formed

More information

Most of your tasks in Windows XP will involve working with information

Most of your tasks in Windows XP will involve working with information OFFICE 1 File Management Files and Folders Most of your tasks in Windows XP will involve working with information stored on your computer. This material briefly explains how information is stored in Windows

More information

Computer Science 125. Microsoft Access Project

Computer Science 125. Microsoft Access Project Computer Science 125 Microsoft Access Project Due Date : Tuesday, March 4th, 11:59 PM 50 points In this project, you will use Microsoft Access to create two databases : a student database and a coffee

More information

Queries Requiring Two Tables

Queries Requiring Two Tables Queries Requiring Two Tables Significant in the PayMaster database is the use of a separate table to list the towns employees reside (live.) By using a separate table for commonly entered data, the Relational

More information

Using the Drag-and-Drop Report Builder

Using the Drag-and-Drop Report Builder Using the Drag-and-Drop Report Builder Salesforce, Winter 16 @salesforcedocs Last updated: October 16, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

Excel Reporting with 1010data

Excel Reporting with 1010data Excel Reporting with 1010data (212) 405.1010 info@1010data.com Follow: @1010data www.1010data.com Excel Reporting with 1010data Contents 2 Contents Overview... 3 Start with a 1010data query... 5 Running

More information

MICROSOFT ACCESS TABLES

MICROSOFT ACCESS TABLES MICROSOFT ACCESS TABLES Create a New Table... 1 Design View... Datasheet View... 5 Table Tools in Datasheet View... 6 Sorting and Filtering Data... 8 Import and Export Data... 10 Relationships... 11 Relationship

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

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

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013)

Step One. Step Two. Step Three USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) USING EXPORTED DATA IN MICROSOFT ACCESS (LAST REVISED: 12/10/2013) This guide was created to allow agencies to set up the e-data Tech Support project s Microsoft Access template. The steps below have been

More information

Les s on Objectives. Student Files Us ed

Les s on Objectives. Student Files Us ed Lesson 7 - Using Lookup Fields 115 Lesson 7 Using L ook up F ields Les s on Topics Looking Up Values in Tables Looking Up Values in a List The Lookup Wizard Review Exercise Les s on Objectives At the end

More information

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development

EXCEL 2007. Using Excel for Data Query & Management. Information Technology. MS Office Excel 2007 Users Guide. IT Training & Development Information Technology MS Office Excel 2007 Users Guide EXCEL 2007 Using Excel for Data Query & Management IT Training & Development (818) 677-1700 Training@csun.edu http://www.csun.edu/training TABLE

More information

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical

Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical Instructions for Configuring a SAS Metadata Server for Use with JMP Clinical These instructions describe the process for configuring a SAS Metadata server to work with JMP Clinical. Before You Configure

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

NETWORK PRINT MONITOR User Guide

NETWORK PRINT MONITOR User Guide NETWORK PRINT MONITOR User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

Querying a Database Using the Select Query Window

Querying a Database Using the Select Query Window Querying a Database Using the Select Query Window PROJECT CASE PERSPECTIVE Dr. Gernaey and his colleagues are eager for Ashton James College (AJC) to obtain the benefits they anticipated when they set

More information

Outlook Tips & Tricks. Training For Current & New Employees

Outlook Tips & Tricks. Training For Current & New Employees Outlook Tips & Tricks Training For Current & New Employees The workshop will help build the necessary skills needed to begin using Microsoft Outlook 2010. The participant will learn how to create e-mail

More information

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University

Simple Invoicing Desktop Database with MS Access 2013. c 2015 by David W. Gerbing School of Business Administration Portland State University Simple Invoicing Desktop Database with MS Access 2013 c 2015 by David W. Gerbing School of Business Administration Portland State University July 2, 2015 CONTENTS 1 Contents 1 Create a New Database 1 2

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

Junk E-mail Settings. Options

Junk E-mail Settings. Options Outlook 2003 includes a new Junk E-mail Filter. It is active, by default, and the protection level is set to low. The most obvious junk e-mail messages are caught and moved to the Junk E-Mail folder. Use

More information

Organizing and Managing Email

Organizing and Managing Email Organizing and Managing Email Outlook provides several tools for managing email, including folders, rules, and categories. You can use these tools to help organize your email. Using folders Folders can

More information

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore

SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore SonicWALL CDP 5.0 Microsoft Exchange InfoStore Backup and Restore Document Scope This solutions document describes how to configure and use the Microsoft Exchange InfoStore Backup and Restore feature in

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

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

Microsoft Project 2007 Level 2: Working with Resources and Managing a Project

Microsoft Project 2007 Level 2: Working with Resources and Managing a Project Microsoft Project 2007 Level 2: Working with Resources and Managing a Project By Robin Peers Robin Peers, 2008 ABOUT THIS CLASS In Microsoft Project 2007 Level 1: Creating Project Tasks, the focus was

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro

Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new

More information

Section 4. Mastering Folders

Section 4. Mastering Folders Section 4 Mastering Folders About This Section Section 3: Working with Receipts introduced you to the Receipts Grid area of the Receipt Organizer window (the lower of the two grids). In the Receipts Grid,

More information