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

Size: px
Start display at page:

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

Transcription

1 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 Switchboard Create a Macro Use the new Microsoft Access 2003 Task Pane to find What s New in Microsoft Access For example, view information on object dependencies, error checking and backing up your database. Microsoft Access 2003 II Introduction Microsoft Access 2003 is a powerful tool to organize, manipulate and present data. Topics will include developing field properties, importing an Excel spreadsheet and MS Access tables, creating a lookup table and working with the Relationship Builder. Also included will be in-depth coverage of queries and forms, working with relational queries, creating a Master Switchboard and a macro. These exercises will allow participants to accomplish enhanced data analysis. Getting Help The ITS Help Desk is a service provided to all Mississippi State University students, staff, and faculty. The ITS consultants are available to help with various computer-related problems as well as provide answers to computer and technologyrelated questions. Visit the Web site at for handouts and resolutions to common computer problems. If you cannot find an answer to your question on the Web or you do not have access to the Internet, please call at (7:30 a.m. to 5:00 p.m. Monday through Friday). You may also contact the ITS Help Desk at 108 Allen Hall or by at helpdesk@msstate.edu. Instructors Harriet Foley hvf1@its.msstate.edu Cesar Zamora caz11@msstate.edu

2 Table of Contents Table of Contents Microsoft Access 2003 Interface and Windows... 3 Creating Database... 9 Import Data Default Date Relationships Lookup Table Relationship Builder Relational Query Form with Subform Action Queries Make-Table Queries Delete, Append Query Basic Forms Advanced Forms Switchboard Manager Macros PowerPoint Slides

3 Database Window Microsoft Access 2003 Title Bar, Menu Bar and Tool bar Title Bar Menu Bar Tool bar Open Database Print Spelling Undo Analyze Relationships Help New Database Save Print Preview Format Word, Excel Large Icons New Object A database is the container for your data and associated objects. It includes tables, queries, forms, reports, pages, macros and modules. When Access is open you are working in one database, but each database can contain many tables, queries, forms, etc. Database Window Database Window Tool bar Objects Menu New Object Shortcuts Category Button List Area for Objects (table names, query names, form names, report names) Default Group 3

4 Tables Table Window A collection of data about a specific topic. Tables organize data into rows called records and columns called fields. Records and fields combined make up the table. Design View Field Name Column Data Type Column Description Column Row Selector Field Properties Data Types Text ch - Default Memo ,000 ch Number - Numeric values Date/Time - Date and time data Currency - Monetary data Auto number - Automatic Number increments Yes/No - Logical Values, also True/False, On/Off OLE object - Pictures, graph, sound, video Hyperlink - Link to an Internet source Lookup wizard - Displays data from another table. Field Properties Field Size - Text - limits size of field to specified ch. Numeric - Allows specification of numeric type Format - format data Input Mask - Sets data entry into a predefined format Decimal Places - Sets number of decimal places Caption - Replaces field name on form and report if used. Default Value - Fills in automatically on data & form entry if placed here. Validation Rule - Data is validated based on rules placed here. Validation Text - Message displayed if Validation Rule broken. Required - Specify if data must be entered. Indexed - Speeds up data access and can limit data to unique values. 4

5 Tables Table Window in Datasheet View Field Names Record selector Space for 1st record Record Navigation Buttons 1st Record Current RecordNext New Record Record Previous Record Last Record Table Views Form Views Query Views Summary of Views Report Views 5

6 Forms Form Window The form is where you normally enter, display and edit your data. It provides greater flexibility than a table. As you enter data into a form you are simultaneously adding it to the table. Form View Design View Most forms just have a detail section, but a form can also have form header, page header, page footer and form footer. 6

7 Queries Query Window A query is either a question about the data stored in your tables or a request to perform an action on the data. Design View Field List Pane can be resized with mouse Criteria for field Query Design Grid Show Check Box DataSheet View Results of Query 7

8 Reports Report Window Reports give you control in presenting your data. They are exceptionally good for sorting and grouping data and for providing subtotal and summary calculations. Print Preview Design View 8

9 Open Microsoft Access 2003 Create Database and a Table In todays workshop we will learn several advanced features of Microsoft Access. First we will create a new database, then we will import one Microsoft Excel table and two Microsoft Access tables into it. The data will already be entered in these tables. 1. Open Microsoft Access In the Task Pane select Create a new file. 2. Under New select Blank database. 3. In the File New Database dialog box select Desktop for the Save in: box. Type Advising in the File name: box. 4. Click Create. 9

10 Import Data Importing A Data table into Microsoft Access from Microsoft Excel 1. Data can easily be imported into Microsoft Access. From the File pull-down menu select Get External Data and Import. 2. In the Import dialog box change Files of type: to Microsoft Excel. In the Temp folder on the Desktop double click on the Major Excel file. After this Excel file is imported into MS Access it will become a lookup table. 3. In the Import Spreadsheet Wizard: a. Select Show Worksheets and Next. b. c. d. e. f. Select First Row Contains Column Headings and Next. Keep In a New Table. Click Next Accept the defaults. Click Next. Click on Choose my own primary key and select ID, if not already chosen. Click Next. Name the table Major. Click Finish. 4. The Design View and Data Sheet View of the Major Table will appear as follows: Close the table. 10

11 Import Data Importing Data Tables into Microsoft Access From Another Database 5. Import the Visit and Student Information tables. From the File pull-down menu select Get External Data and Import. In the Import dialog box change Files of type to: Microsoft Office Access. Select MSU102 MS Access database from the Temp folder on your Desktop. Click Import. Select Visit Information and Student Information tables. Click OK. The design view and datasheet view of these tables will appear as shown below. A relationship will be created between the primary Student Information table and the secondary Visit Information table. Visit Information Student Information 11

12 Default Date Default Date A default date will be added to the Student Information table. The Student Information table already has a mask for Date of Birth of the students. 1. Open Student Information in Design View. 2. Select the Updated field. 3. Click in the Default Value box. 4. Click the Build button. The box that is displayed is called the Expression Builder. 5. Click the = sign. 6. Double-click the + next to Functions. 7. Single-click Built-In Functions. 8. Select Date/Time in the middle box. 9. Double click Date in the right-hand box. 10. Click OK. The Date setting will put the current date into the Updated field as the default value. The user can override this entry and type another date if desired. 11. Close the table. 12

13 Relationships Advantages of a Relational Database There are two reasons to set relationships between tables. Either for a table lookup or to handle multiple occurrences of data. Table Lookup A field in one table can be used to look up data in another table. This keeps from having to store the same data in multiple places. Only the key field from the lookup table is inserted into the main table. If data is updated in the lookup table it will be updated throughout the table(s) it is linked to. Multiple Occurrence of Data Another reason to set a relation is to handle multiple occurrences of data. In our system design, there are multiple occurrences of visits that each student has had to the Student Health Center. Information about each visit should be entered on a separate line and in a separate table from the demographic data about each student. The two tables could be linked together by a field such as the students NetID. This prevents duplication of the demographic data in tables. You want to limit repetitive data entry. In place of large tables with duplicated data, you create smaller separate tables. You join them only when you need to. Queries are used to join the tables together. Normalization Normalization is the process of achieving the optimum design in a database. This makes the database easy to manipulate and search, as well as helping to insure data integrity. The three most common steps of normalization are First Normal Form, Second Normal Form and Third Normal Form. First Normal Form is the most basic level of normalization. To meet the requirements of this level, each of the column (field) values must be atomic (store a single value.) If your database has a field for courses and lists two or three courses in each field it is not in first normal form. In addition, groups of columns cannot be repeated, so your table could not have visit1, visit2, etc. and be in first normal form. 13

14 Relationships Relationships There are three types of relationships in Access: One-to-Many, Many-to-Many and One-to-One. One-to-Many A one-to-many relationship is the most common type of relationship. In a one-to-many relationship, a record in Table A can have many matching records in Table B, but a record in Table B has only one matching record in Table A. Many-to-Many In a many-to-many relationship, a record in Table A can have many matching records in Table B, and a record in Table B can have many matching records in Table A. This type of relationship is only possible by defining a third table (called a junction table) whose primary key consists of two fields - the primary key from both Tables A and B. A many-to-many relationship is really two one-tomany relationships with a third table. One-to-One In a one-to-one relationship, each record in Table A can have only one matching record in Table B, and each record in Table B can have only one matching record in Table A. This type of relationship is rarely used, because most information related in this way would be in one table. You might use a one-to-one relationship to divide a table with many fields, to isolate part of a table for security reasons, or to store information that applies only to a subset of the main table, for example, a second address. 14

15 Look up Table Lookup Table 1. Open the Student Information table in Design View. Click in the Major row and select Lookup Wizard... from the drop down box in the Data Type column. 2. In the first dialog box of the Lookup Wizard select I want the lookup column to look up the values in a table or query. 3. Choose Table: Major in the next dialog box. Click Next In the next dialog box select all fields. Click Next. In the following dialog box select Major for What sort order do you want for your list? Click Next. In the next dialog box of the Lookup Wizard leave the Hide key column checked. Click Next. 6. Leave the title Major in the text box for What label would you like for your look-up column? Click Finish. 7. Click Yes when the next dialog box asks The table must be saved before relationships can be created. Save now? Assign majors to your students in datasheet view. Close the table. 15

16 Defining Relationships Relationship Builder Relationships can be created in queries or at the table level. Unless you do not want your relationships to always exist, you should create your relationships at the table level. You can use the Relationship Builder to do this Click the Relationships icon to open the relationship window. You will see the Lookup relationship that we just created. Click the Show Tables icon on the toolbar to add tables to the window. 3. Click on Visit Information followed by the Add button to add the Visit Infomation table to the Relationships window. The three tables shown below should be in the Relationships window. Click on the Close button in the Show Table window. 4. Next we want to create the relationship for each single record in the Student Information table that links to multiple records in the Visit Information table. We will set up a one-tomany relationship. Each student in the Student Information table can have many visits in the Visit Information table. To link tables, the primary field from one table is linked to a foreign key field in the secondary table. 16

17 Relationship Builder 5. To create the relationship between the primary key NetID in the Student Information table (the primary table) and the foreign key, NetID, in the Visit Information table (related or secondary table), click on NetID in the Student Information table and drag it to NetId in the Visit Information table. The two fields did not have to have the same name, but they do need to be the same type. 6. The Edit Relationships dialog box opens. This is a one-to-many relationships. There is only one NetID and record for each student in the Student Information table, while in the Visit Information table there are many NetID s and records referring to the same student. After the relationship is set up, queries can be created that draw from both tables. Check Enforce Referential Integrity. The user will be prevented from entering a record in the Visit Information table if there is not a matching NetID record in the Student Information table. Referential Integrity is enforced based on the key fields. When Enforce Referential Integrity is checked, Microsoft Access won t let you create orphans in your secondary table. Select Cascade Update Related Fields. By doing this changes in the primary key in the Student Information table will automatically be transferred to the Visit Information table. Click on the Join Type button. 17

18 Relationship Builder 7. Your choice here will influence query results. Click on the third and most popular choice. This will include all records from the Visit Information table and only related records from the Student Information table. Click OK. 8. Click Create to create the relationships between the two tables. 9. Now in the Relationships window, a new line is visible, displaying the one-to-many relationship. The one is on the Student Information, primary table side and the many is on the Visit Information, related table side. 10. Close the Relationships Window. 18

19 Relationship Builder Enforce Referential Integrity 1. Try entering a record with the NetID abc1 in the Visit Information table. Access won t let you enter it because it doesn t exist in the primary table. Referential Integrity is enforced based on the key fields. When Enforce Referential Integrity is checked, Microsoft Access won t let you create orphans in your secondary table Close the Visit Information table Open the Student Information table and add a record with NedID abc1. Fill in the other fields with data. Close this table. 4. Return to the Visit Information table, Open View, and enter a record with NetID abc1. This student can now be entered in the related or secondary table. Cascade Update Related Fields 1. Open the Student Information table and your Visit Information table and place them side by side. 19

20 Relationship Builder 2. Change jtt2 to aaa5. When you move to the next record in the Student Information table the changes will automatically be transferred to the Visit Information table. Change aaa5 back to jtt2. 3. Close the two tables. 20

21 Relational Query Automatically Filling in Data From One of Two Joined Tables If a query brings in data from two or more tables, some of the fields can be automatically filled in. When setting up the query, select the foreign key of the linked field rather than the primary key. The fields from the Primary table will be automatically filled in. A form can be based on this query and the fields will be automatically filled in also. 1. In the Database window click on the Queries tab. Double-click Create query in Design View. Add the tables Visit Information and Student Information to the Query grid. Close the Show Table dialog box. Open the query and field windows so you can see all the variables. 2. From the Visit Information table add NetId, the foreign key with the many symbol next to it. From the Student Information table add First_name, Last_name, Major and City. Return to the Visit Information table and add VisitId, Date, Time and Diagnosis. Visit Information NetId Student Information First_name Last_name Major City Visit Information VisitID Date Time Diagnosis 21

22 Form with Subform 3. Run the query. 4. Add new information to the query window, datasheet view, using an existing NetId. Add the NetId jtt2 and click the tab key. The information from the Student Information table is automatically filled in the query window. Add new data for the visit. The new data on visit information is automatically populated to the Visit Information table. A form created from this query would also automatically fill in fields from the Student Information table. The new data on Visit Information would also be automatically entered into the Visit Information table. 5. Close the query and save it. Creating a Form with a Subform 1. Click on the Forms tab. Double-click Create form by using wizard. 2. Select Table:Student Information and move all the fields to Selected Fields. Select Table: Visit Information and move all the fields to Selected Fields. Click Next. 22

23 Form with Subform 3. View your data by Student Information. Leave the default Form with subforms. Click Next. 4. Select Datasheet for the Layout of your subform. Click Next. 5. Choose a style and click Next. 23

24 Form with Subform 6. Click Finish. 7. Now you can view your main form with a subform on it. Notice there are two navigation bars. Close the form when finished testing it. 24

25 Action Queries Action Queries There are two types of queries in Access: Select and Action. Select queries display data and action queries alter data. The action queries are: Delete, Update, Append and Make Table. The next three queries we will look at are the Make Table, Delete and the Append queries. These three queries are often used together to provide a very useful function: removing outdated records and storing them in an archive table. This is called Archiving Records. We will follow a three-step process: first we will use a Make-Table query to create a table. Second, we will use a Delete query to remove the records we copied from the first table. Finally, we will create an Append query to copy records from our main table to our archive table in the future. Make-Table Query Our fi rst step will be to create a Make-Table query. 1. Make sure all tables and forms are closed. 2. Select the Queries object in the Database window. 3. Click New. 4. Select Design View. 5. Click OK. 6. Add Student Information table to the Query window. 7. Close the Show Tables window. 8. Add all of the fields to the Query grid. Double-click the title bar of Student Information. Click and drag the highlighted fields to the first column and release the mouse button. Notice that Access spreads out the fields automatically. 25

26 Make-Table Query We will archive all records prior to January 1, Locate the Criteria cell of the Updated field. 10. Type <1/1/1999 in the Criteria cell. 11. Click Query on the Pull-down menu. 12. Select Make-Table Query Type the name tblarchivedrecords in the Table Name: text box. This will be the name of the table with archived records. Notice that you can save the table to another database to help keep the size of this database small. Click OK. Close the query without running it. Say Yes to save changes to the set up of the query. 26

27 Make-Table Query 18. Name the query qrymakearchive. 19. Click OK. Now we will run the query to make another table identical to our original table, but only containing records that meet the criteria specified in the Updated field of the criteria row. 20. Double-click the query, qrymakearchive in the Queries object window within the Database window. 21. Click Yes in the warning window. 22. The next warning window will tell you how many records are going to be pasted. A message warns you there is no undo. (But you can always delete the new table.) 23. Click Yes. 24. Switch to the Tables object in the Database window. 25. Open the tblarchivedrecords table and verify that there is one record. 26. Close the table and click the Queries object. 27. Open qrymakearchive in Design view. 27

28 Delete, Append Queries Delete Query With the Archive table created and our initial record copied it is time to move to the second step: deleting the copied record from the original table. The Delete query can be a very dangerous query in that it will destroy information permanently. We will not save this delete query. 1. With the Make-Table query in Design View, click Query in the pull-down menu. 2. Select Delete Query. 3. Run the query by clicking the red exclamation point. 4. Click Yes in the warning box. The records have now been deleted from table Student Information. Because this Delete query can cause problems if run accidentally we will not save it. Append Query Now we will create a query that will append records to our table in the future. 1. Click Query on the Pull-down menu. 2. Select AppendQuery. 3. Leave tblarchivedrecords as the Table Name:. This is the table we will be appending records to, the archived table. 4. Click OK. 28

29 Append Query We will now add a parameter to the query so that we can set the date range for the archived records: 5. Locate the Criteria cell for the Updated field. 6. Delete the 1/1/ Right click in the cell, click Zoom. Type Between [Beginning Date:] And [Ending date:] Click OK. 8. Click File on the Pull-down menu. 9. Click Save As Name the query qryappendstudents. 11. Click OK. 12. Run query qryappend Students and test it with todays date. To complete the archiving of records, you would set up a Delete Query. The delete query would be run each time after running qryappendstudents to delete those students who were just archived. 29

30 Basic Forms Basic Forms 1. Make sure all the tables are closed and click the object Forms in the Database window. 2. Double-click Create form by using wizard. 3. Select Student Information in the Tables/ Queries text box. 4. Click >> to select all of the fields and click Next. 5. Select Columnar and click Next. 6. Select Expedition (or another style if you prefer) and click Next. Change the name of the form to frmstudentinformation. 7. Enter the following record using the form (try to enter data incorrectly and you will notice that our masks and validation rules still apply): 8. Close the form. Click on the Tables object. Open the table Student Information and check out your new record. Close the table. 30

31 Advanced Forms Advanced Forms We will add controls to our form. Up until now we have used forms to enter data into tables. Controls increase the usability of forms. Using the Command button you can add record navigation, record operations, form operations and report operations to your forms. 1. Go back to the Database window. 2. Select Forms. 3. Open the form frmstudentinformation. 4. Switch to Design View. 5. Maximize the design window and stretch the form to fill the window. Record Navigation - Go to Next Record 6. Click the Command button icon on the toolbox. 7. Click and drag in the Detail section of your form to make a small rectangle. The Command Button Wizard will open. 8. Select Record Navigation in Categories 9. Select Go to Next Record in Actions. 10. Click Next. 11. Click the Picture radio button, select one of the pictures by selecting its descriptive text. Click Next. 31

32 Advanced Forms 12. Name the button cmdnext. 13. Click Finish. Record Navigation - Go to Previous Record 14. Perform the same steps to add a Previous button to your form. Name it cmdprevious. Form Operations - Close Form 15. Place a third command button on your form. 16. Select Form Operations in Categories and Close Form in Actions. 17. Select a picture and name the button cmdexit. 18. Switch to Form View and test your buttons. Record Navigation - Find Record 19. Switch to Design View, click the Command button icon and draw another rectangle on your form. 20. Select Record Navigation in Categories and Find Record in Actions. Click Next. 21. Click the text radio button and type Search in the text box. Click Next. 22. Name the button cmdsearch and click Finish. 23. Switch to Form View and test the search button by first clicking in a field and then clicking Search. Notice that the button allows you to search in whichever text box on your form has focus. Close your form. 32

33 Switchboard Manager A switchboard is a special type of form. Switchboards can be set up so persons who are unfamiliar with Microsoft Access can still use your database. On a switchboard, buttons are placed on a blank form. The buttons give the user instant access to tables, forms, queries and reports. Switchboards can also be created using the Switchboard Manager. 1. Click on Tools, Database Utilities, Switchboard Manager. 2. When the following message appears, click on Yes. 3. In the Switchboard Manager dialog box, click on Edit. 33

34 Switchboard Manager 4. In the Edit Switchboard Page dialog box, change the Switchboard Name to Student Advising. Click on New. 5. In the Edit Switchboard Item dialog box, fill in and select options as shown. Click OK. 6. Once more click on New in the Edit Switchboard Page and Add a command to Exit Microsoft Access. Click OK. Close the Edit Swithboard Page and Close the Switchboard Manager. 7. Test out your new Switchboard. Note: To have your switchboard open automatically when opening your database, from the Tools pull-down menu select Start up... In the Display Form/Page textbox, select Switchboard. 34

35 Macros Macros Computers are great at repetitive tasks. In Microsoft Access a macro can be set to run repetitive tasks. One macro can run a series of commands. Once the macro is set up, it can be also be assigned to a button on a form. Macros can be used to open a form in edit mode, add mode or read only mode. You can use a macro to open or print a report or to close a form. A macro can be used to launch the main switchboard form. Macros can also be created to respond to form events, some action of the user on the form such as when a user tries to delete a record, the macro will automatically be started and ask the user to verify the deletion of a record. We will show you a simple macro that opens a form and a table. 1. Click on the Macro object. Click on the New button. 2. Click on the drop-down arrow in the Action column. Choose Hourglass. 3. In the next row of the Action column select OpenForm. Next to Form Name in the lower half of the Macro dialog box under ActionArguments choose frmstudentinformation. 35

36 Macros 4. In the next row of the Action column select Open Table. Select Student Information for the Table Name under Action Arguments. 5. For the next Action choose Beep. 6. Close the Macro window and select Yes when asked if you want to save changes to the design of macro Macro1? Name the macro Beep. Test out the macro by running it. Note: If a macro is named AutoExec, it will be the first element run when the database is opened. 7. Close the form and table. Close your database. 36

37 PowerPoint Slides 37

38 PowerPoint Slides 38

39 PowerPoint Slides 39

40 A publication of ITS, a division of Information Technology Services, Mississippi State University Mississippi State University does not discriminate on the basis of race, color, religion, national origin, sex, age, disability, or veteran status.

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

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

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

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

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

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

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports

INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports INTRODUCTION TO MICROSOFT ACCESS Tables, Queries, Forms & Reports Introduction...2 Tables...3 Designing a Table...3 Data Types...4 Relationships...8 Saving Object Designs and Saving Data...9 Queries...11

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

Microsoft Access 2003 Module 1

Microsoft Access 2003 Module 1 Microsoft Access 003 Module http://pds.hccfl.edu/pds Microsoft Access 003: Module June 005 006 Hillsborough Community College - Professional Development Services Hillsborough Community College - Professional

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

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise

Access I 2010. Tables, Queries, Forms, Reports. Lourdes Day, Technology Specialist, FDLRS Sunrise Access I 2010 Tables, Queries, Forms, Reports Lourdes Day, Technology Specialist, FDLRS Sunrise Objectives Participants will 1. create and edit a table 2. create queries with criteria 3. create and edit

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

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

Creating a Database in Access

Creating a Database in Access Creating a Database in Access Microsoft Access is a database application. A database is collection of records and files organized for a particular purpose. For example, you could use a database to store

More information

Access 2010 Intermediate Skills

Access 2010 Intermediate Skills Access 2010 Intermediate Skills (C) 2013, BJC HealthCare (St Louis, Missouri). All Rights Reserved. Revised June 5, 2013. TABLE OF CONTENTS OBJECTIVES... 3 UNDERSTANDING RELATIONSHIPS... 4 WHAT IS A RELATIONSHIP?...

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

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

Access 2007. Creating Databases - Fundamentals

Access 2007. Creating Databases - Fundamentals Access 2007 Creating Databases - Fundamentals Contents Database Design Objectives of database design 1 Process of database design 1 Creating a New Database... 3 Tables... 4 Creating a table in design view

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 Access Part I (Database Design Basics) ShortCourse Handout

Microsoft Access Part I (Database Design Basics) ShortCourse Handout Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences

More information

MICROSOFT ACCESS A. CREATING A DATABASE B. CREATING TABLES IN A DATABASE

MICROSOFT ACCESS A. CREATING A DATABASE B. CREATING TABLES IN A DATABASE Prepared for MIS 6326 by Dr. Sumit Sarkar 1 MICROSOFT ACCESS A database is a collection of different types of data, stored in a manner to facilitate use in diverse ways. In Microsoft Access 2000, a database

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

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

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1

- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1 - Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu

More information

A Basic introduction to Microsoft Access

A Basic introduction to Microsoft Access A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database

More information

MS Access. Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed.

MS Access. Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed. MS Access Microsoft Access is a relational database management system for windows. Using this package, following tasks can be performed. Organize data into manageable related units Enter, modify and locate

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 2000 for Windows Handout: 3 Academic Computing Support Information Technology Services Tennessee Technological University December 2001 1. Creating a new database In this exercise, we

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

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

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options

Filter by Selection button. Displays records by degree to which they match the selected record. Click to view advanced filtering options The Home Ribbon Sort Buttons: sort records into ascending or descending order by selected field Filter by Selection button. Displays records by degree to which they match the selected record. Display summary

More information

Access is an extremely complex subject and, inevitably, shortcuts and compromises have been made to reduce the written content of this article.

Access is an extremely complex subject and, inevitably, shortcuts and compromises have been made to reduce the written content of this article. EMISNUG Conference 2012: Building an Access database Patrick Wilmore, IT Manager, Windrush Medical practice, Witney This handout accompanies my talk at 10.00am on Friday 8 th September 2012. The objective

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

INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL

INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL University of Glasgow Department of Computing Science INTRODUCTION TO MICROSOFT ACCESS MINIMAL MANUAL 1 Databases in Access...2 2 The Database Window...2 3 Help...2 4 Saving...3 5 Wizards...3 6 Tables...3

More information

Using Microsoft Access Databases

Using Microsoft Access Databases Using Microsoft Access Databases Print this document to use as a reference while you work through this course. Open Access, and follow all directions to familiarize yourself with the program. Database

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

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

Instructions for Creating Silly Survey Database

Instructions for Creating Silly Survey Database Instructions for Creating Silly Survey Database Create a New Database 1. Find the shortcut or the file that starts MS Access and click it to activate the program. 2. In the Create a New Database Using

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

NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA

NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA NATIONAL INSTITUTE OF HOTEL MANAGEMENT, KOLKATA Concept of Database-Access Section- A 1. An organized collection of logically related data is known as A. Data B. Meta data C. Database D. Information 2.

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

Access II 2007 Workshop

Access II 2007 Workshop Access II 2007 Workshop Query & Report I. Review Tables/Forms Ways to create tables: tables, templates & design Edit tables: new fields & table properties Import option Link tables: Relationship Forms

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

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

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables

4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables 1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View D) All Of Above 2. Which Of The Following Creates A Drop Down List Of Values To Choose

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

Introduction to. Microsoft Access 2000. Practicals

Introduction to. Microsoft Access 2000. Practicals Introduction to Microsoft Access 2000 Practicals 1 Contents Practical 1..1 Introduction to Access basics. Getting help in Access. Creating databases and tables. Practical 2 13 More on creating, editing

More information

Topic: Relationships in ER Diagram and Relationships in MS Access

Topic: Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Topic: Relationships in ER Diagram and Relationships in MS Access Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

More information

Course Title: Microsoft Access 2007- Basic Duration: 12 hours

Course Title: Microsoft Access 2007- Basic Duration: 12 hours Course Title: Microsoft Access 2007- Basic Duration: 12 hours Getting started Topic A: Database concepts A-1: Identifying database components A-2: Identifying the advantages of relational databases Topic

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

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

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

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

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N).

Ken Goldberg Database Lab Notes. There are three types of relationships: One-to-One (1:1) One-to-Many (1:N) Many-to-Many (M:N). Lab 3 Relationships in ER Diagram and Relationships in MS Access MS Access Lab 3 Summary Introduction to Relationships Why Define Relationships? Relationships in ER Diagram vs. Relationships in MS Access

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

Microsoft Access 2010

Microsoft Access 2010 IT Training Microsoft Access 2010 Jane Barrett, IT Training & Engagement Team Information System Services Version 3.0 Scope Learning outcomes Learn how to navigate around Access. Learn how to design and

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

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

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

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

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

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

Access Part 2 - Design

Access Part 2 - Design Access Part 2 - Design The Database Design Process It is important to remember that creating a database is an iterative process. After the database is created and you and others begin to use it there will

More information

Structure a Database. Key Concepts LESSON. Access 380. Lesson 2: Structure a Database. Standards

Structure a Database. Key Concepts LESSON. Access 380. Lesson 2: Structure a Database. Standards LESSON Key Concepts Structure a Database In this lesson, you will continue learning skills to use Access in your daily life. You will learn to create the following elements in this lesson: databases, tables,

More information

Access Database Design

Access Database Design Access Database Design Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk -- 293-4444 x 1 http://oit.wvu.edu/support/training/classmat/db/ Instructors:

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

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

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

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

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

Databases and Microsoft Access II

Databases and Microsoft Access II Databases and Microsoft Access II Northern New York Library Network Workshop Jim Crowley C3 - Crowley Computer Consulting 9148 State Highway 37 Ogdensburg NY 13669 315-394-7008 fax 315-394-7009 www.crowleycomputers.com

More information

Technology Training Services. Introduction To Microsoft Access 2007

Technology Training Services. Introduction To Microsoft Access 2007 Technology Training Services Introduction To Microsoft Access 2007 Introduction to Access 2007 Written by Kathleen A. Moser, PhD Technology Training Services April 2008 Maricopa County Community College

More information

MICROSOFT OFFICE ACCESS 2007 - LEVEL 2

MICROSOFT OFFICE ACCESS 2007 - LEVEL 2 MICROSOFT OFFICE 2007 MICROSOFT OFFICE ACCESS 2007 - LEVEL 2 Modifying Tables Setting Field Properties Using Operators in Queries Designing Advanced Queries Creating Action Queries Using Advanced Query

More information

Introduction to Microsoft Office Access 2010

Introduction to Microsoft Office Access 2010 Introduction to Microsoft Office Access 2010 The Himmelfarb Health Sciences Library Questions? Ask us. Microsoft Office Access 2010 by Himmelfarb Health Sciences Library is licensed under a Creative Commons

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

Microsoft Access 2010: Basics & Database Fundamentals

Microsoft Access 2010: Basics & Database Fundamentals Microsoft Access 2010: Basics & Database Fundamentals This workshop assumes you are comfortable with a computer and have some knowledge of other Microsoft Office programs. Topics include database concepts,

More information

Access NAMES Computerized Database

Access NAMES Computerized Database Access NAMES Computerized Database 2014 USER'S GUIDE Last Updated: 4/2014 Prepared by: BEVERLY J. SIMS COMPUTER SPECIALIST bsims@uaex.edu 501-671-2263 The Division of Agriculture offers its programs to

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

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

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

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

Creating an Access Database. To start an Access Database, you should first go into Access and then select file, new.

Creating an Access Database. To start an Access Database, you should first go into Access and then select file, new. To start an Access Database, you should first go into Access and then select file, new. Then on the right side of the screen, select Blank database. Give your database a name where it says db1 and save

More information

Hands-on training in relational database concepts

Hands-on training in relational database concepts J. of Acc. Ed. 22 (2004) 131 152 Journal of Accounting Education www.elsevier.com/locate/jaccedu Hands-on training in relational database concepts Jeffrey S. Zanzig a, *, Bor-Yi Tsay b,1 a College of Commerce

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 2010 An Intermediate Guide (Level 2)

Microsoft Access 2010 An Intermediate Guide (Level 2) IT Training Microsoft Access 2010 An Intermediate Guide (Level 2) Contents Introduction...1 Speeding up Table Creation...2 Using Datasheet View...2 Using a Table Template...3 Input Masks...3 Importing

More information

Microsoft. Access HOW TO GET STARTED WITH

Microsoft. Access HOW TO GET STARTED WITH Microsoft Access HOW TO GET STARTED WITH 2015 The Continuing Education Center, Inc., d/b/a National Seminars Training. All rights reserved, including the right to reproduce this material or any part thereof

More information

Microsoft Access 2013 An Intermediate Guide (Level 2)

Microsoft Access 2013 An Intermediate Guide (Level 2) IT Training Microsoft Access 2013 An Intermediate Guide (Level 2) Contents Introduction...1 Speeding up Table Creation...2 Using a Table Template...2 Using Datasheet View...2 Input Masks...3 Importing

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 Access Glossary of Terms

Microsoft Access Glossary of Terms Microsoft Access Glossary of Terms A Free Document From www.chimpytech.com COPYRIGHT NOTICE This document is copyright chimpytech.com. Please feel free to distribute and give away this document to your

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

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

Advanced Database Concepts Using Microsoft Access

Advanced Database Concepts Using Microsoft Access Advanced Database Concepts Using Microsoft Access lab 10 Objectives: Upon successful completion of Lab 10, you will be able to Understand database terminology, including database, table, record, field,

More information

Data Warehousing With Microsoft Access

Data Warehousing With Microsoft Access R. Jason Weiss Development Dimensions International This issue s edition of the Leading Edge was submitted by guest writer Robert J. Townsend. Data Warehousing With Microsoft Access Robert J. Townsend

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

LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS

LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS LEWIS-CLARK STATE COLLEGE BUSINESS TECHNOLOGY AND SERVICE DIVISION SYLLABUS Course Title: Business Computer Skills Course Number: CITPT 110-01/PT01 and CITPT 110-02/PT02 Credit Hours: 3 Semester: Fall

More information