Microsoft Access 2010

Size: px
Start display at page:

Download "Microsoft Access 2010"

Transcription

1 IT Training Microsoft Access 2010 Jane Barrett, IT Training & Engagement Team Information System Services Version 3.0

2 Scope Learning outcomes Learn how to navigate around Access. Learn how to design and use a variety of database mechanisms such as tables, queries, forms and reports. Understand the relationship between tables. Table of Contents Scope... 2 Table of Contents... 2 Introduction... 3 General information... 3 Databases... 3 Tables and records... 3 Fields... 3 Data types... 3 Key fields (or Primary Key fields)... 5 Constructing a database... 5 Creating a database in Access... 7 The starting window... 8 Tables... 8 Creating a table (Table Design View)... 8 Designing a table... 9 Data types and field properties... 9 Caution... 9 Entering data in a table Editing Data Importing data from elsewhere Importing from Excel Importing from a text file Copying, renaming or deleting tables Change appearance of tables Queries Wild Cards AND and OR Queries involving more than one table Other Query types Forms Creating Simple Forms Change the Layout of a Form Reports Contacts For queries or help Useful resources Training videos Booking other Access training courses Online training Your feedback Help us improve your training... 25

3 Introduction This course shows you how to create a database and how to design and use a variety of mechanisms such as tables, queries (including editing queries), forms (including the use of command buttons) and reports. It will also explain about using relationships between tables. To supplement this introductory course, we recommend the ECDL (European Computer Driving Licence). The ECDL consists of seven modules (including a database module) that will demonstrate your competence in a range of computer skills. For more information visit: Note: These course materials are design to accompany face-to-face training and some exercises may be difficult to complete out of the IT Training Lab. General information Databases A database is a collection of related data from which information is drawn. The total data can usually subdivided into areas of similar information. For example a database containing information about a school would contain data about students, teachers, courses etc. There will be many instances of each entity eg many students but the data kept about each member would be similar, There will also be relationships between the different entities eg Student A is taught Course B by Teacher C. Tables and records The information about each entity or relation is stored in a separate table. The information about a single instance of an entity (or relation) is stored in a record. A record is all the relevant information about the entity. Therefore, a table is made up of many records. Fields The record will consist of a number of facts, each separate fact eg FirstName, LastName, department is stored as a field. Thus a number of fields form a record; a number of records (all having identical fields) form a table and a collection of tables form a data base. Data types Data in fields can be of various types: Setting Text Memo Type of data (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers can be any number from characters. You should generally use the smallest possible FieldSize setting because smaller data sizes can be processed faster and require less memory. Lengthy text or combinations of text and numbers up to 63,999 characters. 3

4 Number Numeric data used in mathematical calculations, whole or decimal places. If the DataType proper is set to Number, the FieldSize property settings and their values are related in the following way: Setting Description Byte Stores numbers from 0 to 255 (no fractions). It occupies 1 byte. Integer Stores numbers from -32,768 to 32,767 (no fractions). It occupies 2 bytes. Long Integer Stores numbers from -2,147,483,648 to 2,147,483,647 (no fractions). It occupies 4 bytes. The data type AutoNumber is a Long Integer. Single Stores numbers with 7 digits of precision. Double Stores numbers with 15 digits of precision. The default default value for numbers is 0. Date/Time Currency AutoNumber Yes/No OLE Object Hyperlink Attachment Lookup Wizard Note: unless there are good reasons otherwise, choose Long Integer for whole numbers and Double for numbers with a decimal part. Date and time values for the years 100 through In the field property section choose Format to select which type of date and/or time you require. Whilst all dates are stored in the same way, probably the safest format to use for dates is Medium Date eg 23-Apr- 10 so there is no confusion between the American and English date formats. Currency values and numeric data used in mathematical calculations involving data with one to four decimal places. Accurate to 15 digits on the left side of the decimal separator and to 4 digits on the right side. Currency fields use a faster fixed-point calculation that avoids rounding errors. There are a number of possible display formats include one with the sign. The default value is 0. A unique sequential (incremented by 1) number or random number assigned by Microsoft Access whenever a new record is added to a table, used where a guaranteed unique value is required. This type is not editable. AutoNumbers are often used for Key fields. Yes and No values and fields that contain only one of two values (Yes/No, True/False, or On/Off). The default is No or equivalent. OLE data types includes pictures/graphics, documents spreadsheets etc. Text or combinations of text and numbers stored as text and used as a hyperlink address. A hyperlink address can have up to 4 parts for example Any supported type of file. You can attach images, spreadsheet files, documents, charts, and other types of supported files to the records in your database, much like you attach files to messages. You can also view and edit attached files, depending on how the database designer sets up the Attachment field. Attachment fields provide greater flexibility than OLE Object fields, and they use storage space more efficiently because they don't create a bitmap image of the original file. Creates a field that allows you to choose a value from another table or from a list of values by using a list box or combo box. Clicking this option starts the Lookup Wizard, which creates a lookup field After you complete the wizard, Microsoft Access sets the data type based on the values selected in the wizard. Sometimes the value of a field is not available in which case it is entered as NULL. Note: that this is different from 0 for numbers and the empty string for text. Table 1 4

5 Key fields (or Primary Key fields) Some records will have the same information in certain fields, eg several staff will be in the same department, but usually there is one field, or combination of fields, which is unique. This field can be set as the key field(s), thus a query searching for a specific value of this field yields only one record. Where no obvious field can be guaranteed to be unique (eg even the combination of firstname and lastname, whilst probably unique in most cases, cannot be guaranteed unique as it is obviously possible to have, for example, two John Smiths), or where the field values are too cumbersome to use, then an artificial field such as staff-id or course-no can be introduced in order to provide a key field. The value entered in this field can be a simple number eg 3527 or some more meaningful (to the human user) text eg BL234-AU. Once a field has been defined as a key field then it follows that this field can never be left blank or NULL as is possible for other fields. Access has a special field type called AutoNumber which can be used to automatically enter such codes. Constructing a database When deciding on the structure of the tables that make up the database certain points have to be considered: Redundancy Inconsistency ie having the same data entered more than once which is obviously inefficient in terms of time and space and can lead to ie having conflicting information is in the table when one or more of the entries vary from the others. For example: Name Age Subject Grade John Smith 16 French C John Smith 16 English B Bill Brown 17 Maths A John Smith 15 Maths B Each time John Smith gains a grade and entry is made which includes his age. So redundancy occurs when the fact that he is 16 years old has been stored twice. Inconsistency occurs when on the third entry when he appears to be 15. This problem can be solved by creating two tables, one about the people and one about the grades: id name age s_id subject grade 23 John Smith French C 39 Bill Brown English B 36 English D 39 Maths A 23 Maths B To do this it is necessary to create an extra piece of data namely the id number so that records in the two tables can be related to each other. This change avoids duplication of data and creates a single point of entry for data. However it brings with it a possible problem that of referential integrity. 5

6 Referential integrity means that when, in one table, you have a reference to a record in another table then this record must exist. For example who is student 36 who has taken English? When a field in one table refers to a key field in another it is said to be a Foreign Key. Access can check that no entries are made without an existing reference. Decomposable fields fields which could be split into two or more fields are said to be decomposable. For example the name field in the example above could be split in two, first_name and last_name. It is usually better to break down your data at design level as it is easier to join data in two fields than it is to split data up. When deciding what tables to create, first identify the entities that exist. These are those objects that exist in their own right. For example students exist independently of the courses. Courses exist even before students enrol for them. So the entities in this simple example might be students, courses and teachers. The information about students might be name, address, date of birth, gender etc; the information about courses might be name, location, day etc; The information about teachers might be name, address, etc. Note: that no information about what courses a student takes is stored in the student table. This type of information is referred to as a relation and a separate table is created linking students with courses. Similarly another table would link teachers and courses. Field names Although Access allows you to give fields names of up to 64 characters in length including spaces it is generally better to have shorter, meaningful names and to avoid spaces. Some field names such as first name which naturally have a space in them can be entered as first_name or firstname. Probably the best solution is to use the method of capitalisation ie FirstName where each word in the title is capitalised and then joined without spaces. Access database objects An Access database consists of a number of different objects: Tables - are the database objects which contain data; Queries - are views of this data and ways of retrieving information from the data; Forms - are a way of controlling the entry and editing of data; Reports - are ways of arranging the information for printing; Macros - are ways of combining several database actions together; Modules - are where you can create Basic code to achieve any effect you might require. This document will deal with the first four of these. 6

7 Creating a database in Access When access starts a window like the one shown in Figure 1, you can: Click the Blank Database option; or Select one that you have already created Open Recent Database: In the options window on the right you can: Figure 1 Enter a name for the database in the default location; or Click on the Folder Option to see the standard file window; Choose your location; and Give the database a name; then Click on Create. To open a database that is not in the recent databases list click on More. To close a database click on the Office button and chose Close or Exit. 7

8 The starting window When Access opens for the first time, it presents you with one empty table containing an id field. The next section shows you how to design you own table. Tables When you create a database in Access 2007 it inserts a blank table with one field (id). Creating a table (Table Design View) Figure 2 Select Create, click on Table (which will give you a new table in data view like Figure 3); or Select Table Design which gives you a blank table with no fields at all (this view gives the most control and so the rest of this section will refer to this). Note: to reach this view for an existing table right click on the table name and choose Design View. Figure 3 Note: The id field: by default when you create a table in data view, Access adds a key field called id. Not all tables require a key field or you may wish to name it something else. Unless you know that you need this field you should delete it. 8

9 Designing a table Enter the field name (names can be up to 64 characters long and can include spaces, it is best to keep names as short as possible whilst still remaining meaningful. Press Tab to go into the DataType column (the default type of data is text and this is automatically set for you). Clicking on the drop down arrow button which appears in this column will give you a list of all the other types of data you can use. These are listed in the table below. Figure 4 Note: here, as almost everywhere in Access, pressing F1 will bring up context sensitive help. You can, if you wish, type in a description of the field in the third column. This is for reference purposes only. Data types and field properties At the bottom of the window is an area labelled Field Properties. In these boxes you can set the field size, validation rules, display formats and default values. See Table 1 (pages 3 and 4) for a detailed explanation of Data Types and field properties. Caution Whilst the design of a table can be changed at any time if you convert a large FieldSize setting to a smaller one in a table that already contains data, you might lose data. For example, if you change the FieldSize setting for a text field from 255 to 50, data over 50 characters is truncated. If the data in a Number field doesn't fit in a new setting range, fractional numbers may be rounded or you might get a null value. For example, if you change from single to integer, fractional values are rounded to the nearest whole number and values greater than 32,767 or less than -32,768 result in Null fields. You can't undo changes to a table's design after saving it in Design View. When you have entered all the fields, click on the Control Box button and chose Close. You will be asked to name and save your table. Note: you can change the structure later. 9

10 Entering data in a table Select the table and click on Open. You will be presented with a spreadsheet representation of your table with one blank row. This is called Datasheet View. Where the field has a DataType of AutoNumber this will display a star in the left-hand column to indicate that this field cannot be edited in any way. Fields that can be edited will display a pencil in the left-hand column (when you place the cursor in them). Figure 5 Type in the data (shown in Figure 6), press Enter or Tab to go from field to field. When you have finished, click on the Close box. Figure 6 Editing Data With the table open you can click on any value and edit it in the normal way. Once you move from the record the values are changed in the database. Forms (following), offer another way of entering and editing data. Importing data from elsewhere If you have data already available in some form it may well be possible to bring in the data directly: Choose External Data Then choose from the Import tab. Then choose the type of source file eg Excel, text etc. Figure 7 10

11 Importing from Excel When you select Excel as the source the following window appears: Choose the source file; and Then say whether you are to create a new table; or Append data to an existing table. The import wizard then starts. Figure 8 As an Excel workbook can contain several sheets you are next asked to identify the required sheet. The next step is to indicate whether or not the first line contains field names. If it does then the data will be matched correctly or new fields created, otherwise data will be inserted in column order. If you are creating a new table you will be given the chance to choice your own data types rather than accepting the defaults. You will also be given a chance to choose the key field. Importing from a text file This is similar to importing from Excel but there is a choice of text file types, delimited and fixed width. It is assumed that in all text files one record is written per line. The difference between the two types is how the fields can be identified. Delimited text files are written with the values of the fields separated by a constant character for example a comma, space or a tab. In fixed width text files each field occupies the same number of characters in each record, with spaces used to pad out the field values. Copying, renaming or deleting tables Right click on the table name and chose the appropriate action. Change appearance of tables You can change the size of the cells in a table, or the font used to display the data by clicking on Home and then choosing the appropriate value form the Font section. 11

12 Task 1: Tables a) Create a table Create a table to hold information about students (it will require fields for first name, last name, date of birth and gender). 1. Give the table the name Students. Delete the first row called ID. 2. Enter the field names as shown below and choose the data types from the drop down list: Field Name Data Type Description FirstName LastName dob Gender Text Text Date/Time Text 3. Selecting each field in turn, move to the bottom pane and alter the field size (format property of the field): 4. Give FirstName and LastName a field size of 20; 5. Set the format of dob to MediumDate; and 6. Give gender a field size of 8; then 7. Close down the table design window, and save changes. b) Entering records 1. Double Click on the Student Table to open the table in Datasheet View, then create four records by entering values in the cells. Note: pressing Tab or Enter moves you from one cell to the next creating a new record when appropriate. 2. Close down the table and notice what happens (or more specifically what doesn't happen). c) Editing and deleting records 1. Open the table up again and alter some of the values, then select one of the records by clicking the mouse in the left hand margin of the table (the grey area) and then press the Delete key (notice you get a warning before the record is deleted). d) Create another table (see a) Create a table) 1. Create a table called Courses, (again delete the ID row), with the following fields: CourseName (text width 20); Day (text width 10); Tutor (text width 15) and Room (text width 10). Close and save the table. e) Import data from an Excel file 1. Click on the External Data Tab, then Click on the Excel Icon and Browse to select data.xls from the correct folder and press Open. 2. Check the option Append making sure the sheet Students is selected and press OK. 3. Show Worksheets should be selected, Click Next. 4. Check the box which says First row contains column headings and press Next. 5. Check Import to Table shows Students then press Finish. 6. Don t save import steps, click Close. 7. Open the Students table to see the data you added, then close the table. 12

13 f) Import Data from a Text File 1. Repeat Task e) Import data from an Excel file with the file Courses.txt. Select the Text File option instead of the Excel Icon. 2. Append a copy of the Courses.txt file to the Courses table and Click OK. 3. Check that Delimited has been selected and press Next. 4. Check that the delimiting character is Space and the click in the box which reads First row contains field names and press Next. 5. Check Import to Table shows Courses then press Finish. g) Alter the design of a table 1. Select the Students table and click on View, Design. 2. Add a new field called ID with data type AutoNumber. 3. Close the design and Save the table, then open it in Data View. Notice the position of the ID field, and the fact that it has been filled with values. 4. Change the first ID from 1 to 100. What do you notice? 5. In Design View select the ID field and drag it to the top of the list of fields, View Data again. 6. Repeat with the Courses Table adding an ID field and viewing the result. h) Creating a table that says which student does what course 1. Create a new table called Attends, with two fields; one called Student and the other Course, both having the data type number, then Close and Save this table. 2. Open the Students table and make a note of the ID of one of the students. 3. Open the Courses table and find the ID of the course you wish the student to take, enter the Student ID and Course ID numbers in the appropriate columns of the Attends table. i) Get more data for the attends table 1. Repeat Task e) Import data from an Excel file, this time selecting the sheet Attends and append the data to the Attends table. j) Setting Key fields 1. Certain fields are special, ie ID in Students and ID in Courses. The values in these fields are used in the Attend table to provide the link. 2. Select Students and click on Design. Select the ID field and click on the key symbol from the toolbar, then Close and Save. 3. Repeat for Courses. End task 13

14 Queries A query is a request for information from the stored data. Once it has been defined it can be used as if it were a table itself, and be formatted, printed, and used in forms or reports. Click on the Create tab; then on Query Design (The query design window appears with the Show Table window on top). Select the table that you wish to use in your query, and click on the Add button. Repeat for all the tables that you wish to use in the query and then Close the Show Table window. The query design window has columns in which you enter the fieldnames you wish to see. Figure 9 Click in the field box to get a drop down list of field names to choose from, then select the one you want. Double click on the field name in the box in the top half of the window to copy the field name into the next available column. The third row enables you to ask for the results to be sorted: Click in this area to get a list of three choices, Not Sorted (the default), Ascending or Descending. The fourth row contains a check box and deselecting the check box will mean that the field is used in the query but the result is not shown. The rest of the rows are used to enter the search criteria. Type the values, or range of values required and use several rows for OR searches; Criteria on the same row are assumed to be AND searches. Wild Cards In the criteria field it is possible to search for more than one value by using wild cards, and instead of entering =value you enter like value where value is a quoted string containing some combination of text and wild card. The wild cards are: * which stands for any or no characters;? which stands for one character; and It is also possible to enter comparison operators such as > or <, or the BETWEEN?? AND?? operator. 14

15 The fields returned by the query can be simple fields from the table or they can be expressions. For example [FirstName]& &[ LastName] creates a long string combining the two values with a space between them. AND and OR When creating criteria for queries it is important to understand how AND and OR work. For example given the following data: Record FirstName LastName 1 Jim Smith 2 John Smith 3 Jim Jones 4 John Jones 5 Jim Green The query FirstName = Jim AND LastName = Jones gives record 3. The query FirstName = Jim OR LastName = Jones gives records 1, 3, 4 and 5. All the Smiths and Greens, which is records 1, 2 and 5 is obtained by the query LastName = Smith OR LastName = Green. The Query LastName = Smith AND LastName = Green yields nothing as no one has a LastName which is both Smith and Green. Queries involving more than one table When a query involves more than one table you add all the tables required, preferably in the order that makes linking easiest. To link a field in one table to the related field in another select the field and drag it onto the related field. A line should appear to illustrate the linking. Create the query in the normal way with the increased number of fields. The second line will show the table related to the field. Other Query types Figure 10 The default type of query is the Select query which returns records or parts of records from tables but does not alter or affect the underlying data. There are some other types of query which when run will affect the data. Figure 11 15

16 Task 2: Queries a) Create a simple query Create simple query on one table with restricted fields, eg show just the FirstName and LastName of the students. 1. To start a new query, select the Create Tab and then click on the Query Design Icon. 2. From the table list select Students and then Add and Close the table list. 3. In the first column of the query, in the field row enter FirstName. Note: this can be done by double clicking on FirstName in the list of fields, or by dragging it from this list. 4. In the second column enter LastName. 5. Click on the Run button on the tool bar (this looks like an exclamation mark!) to see the resulting data for this query. Add criteria to select certain records, eg show females only: b) Add criteria 1. Click on the View button to get back to design. In the third column add Gender; and in the fifth row called criteria type in the word Female. 2. Click Run to see data. c) Edit data in a query: 1. Check the data, one name appears to have been given the wrong gender, change Female to Male. 2. Click on the View button twice and see if this record still appears. Sort data according to one field, eg sort alphabetically by last name: d) Sort 1. Click View to return to Design. In the LastName column in the third row labeled sort, click on the Expand button and choose Ascending. 2. Click on View to see results. e) Have non visible fields in query 1. Return to Design View and in the gender column, in the fourth row (show) click in the box with the tick in, this removes the tick. 2. Change to Data View to see effect. Note: gender is still being used by the query to select records, but its value is not being shown. 3. Close query and save it as Query1. f) Create query with comparison criteria eg > < between 1. Create a new query. From the table list select Students and then Close the table list. 2. Get the new query to show the columns FirstName, LastName, dob and Gender and we will sort on LastName by adding a criteria. 3. In the criteria row for LastName enter > k and then View data. 4. Change the criteria to <h and then View data. 5. Change the criteria to between h and k and then View data. 6. Close query and save it as Query2 16

17 g) Create query with multiple criteria (AND) 1. In the previous query clear the criteria for LastName. 2. In the criteria row enter Male in the gender column and > 1/1/70 in the dob column. 3. View data, this should be all males born after 1st Jan h) Create query with multiple criteria (OR) and wildcards 1. Clear all criteria, or create a new similar query. 2. In the criteria row for LastName type m* and then View data. 3. Return to Design view and notice how the criteria have been changed by access. 4. In the row below like m* type s* and then View data. What has been returned? 5. Move the s* from the LastName column to the FirstName column, leaving it in the second criteria row and then View data. What has been returned? 6. Move s* to the first criteria row of FirstName and then View data. What has been returned? End task Update Queries This type of query enables you to make changes to a group of selected records. First create a Select query that chooses the records that you wish to update, then change the query to an update query and enter in the update to line the new values that you wish to appear in the table. Then run the query by clicking on the Run button. Delete Queries This is similar to an update query but enables you to delete records. Make Table Queries This type of query actually writes the results into a table (Normal queries return data from other tables). This is useful for taking a snapshot of data from a constantly changing table. Append (update) Queries Like a Make Table Query, this writes to records in an existing table. Statistical Queries (Totals) This type of query is used to find totals for groups of data. In the example the results have been grouped by CourseName and for each course a count of the number of students is given. Query Parameters If you have a series of queries which are identical except for one value you can reduce them to one query and use a parameter to replace this value. The actual value is inserted at runtime. If you had a query where the criteria in the subject field was Maths and another where the criteria was English, then in the criteria field enter [subject] (the square brackets are necessary) and the word subject must not be an existing field name. When you run the query you will be prompted for the value of subject and can enter Maths, English or whatever subject you require. 17

18 For example: A criteria of [Please enter the course code] has been added in the Design View. This will result in the Enter Parameter Value window appearing to request a course code. Figure 11 Task 3: Update Queries a) Create action query (update) 1. Create a query to return all females. 2. Change the query to an Update query using the icon in the ribbon ****. 3. In the Update To row for the Gender column type F 4. Run the query and click Yes to accept changes and click on the Select icon to return from Update mode. 5. Open the Students table from the table collection and see what effect this query has had. 6. Repeat changing Female to F and Male to M. 7. ***These tasks will need explanation. b) Create statistical query, counting records 1. Create a query from the Students table with gender in the first column and LastName in the second column. 2. Click on the Totals button from the toolbar. 3. In the LastName column, change group by to count (use drop down list) and then Run and view the data. c) Create a query with results other than table entries. 1. Create a new query based on the Students table. In the first column type [FirstName] & " " & [LastName] (Note: there is a space between the two quotes). 2. Run the query. What has been returned? What title has been given to this column of data? 3. Return to Design View. 4. Change expr1 to name (note don't delete the colon) and then review the data. 5. In the second column type DateDiff("yyyy",[dob],Now()) and then view the data. Explanation: DateDiff is a function with three parameters that returns the difference between two dates. The first parameter, the unit "yyyy", stands for years, the other two parameters are the two dates. [dob] refers to the date of birth field in the student table. Now() is a function which returns the current time and date. DateDiff returns the number for years between the date of birth of the student and now ie their age. 18

19 6. Alter the column heading appropriately. 7. Sort the results alphabetically by Name, see Task d) (Sort). 8. View data. Have they been sorted in the conventional way ie alphabetically by LastName? 9. Turn off sorting in the first column, add a third column with LastName, sort this column by ascending and uncheck the show box, see Task e) Have non visible fields in query. What this means is your data will be sorted by LastName, but you won t see LastName in retrieved results. 10. Click View data or Run. Has the data sorted correctly? Hint: look at the Smiths. 11. Repeat previous step adding a fourth sorted column with FirstName. d) Create a query linking two (or more) tables 1. Open a new query, select the Student table and click Add then repeat for the Attends table and the Courses table, then click Close. 2. Click on the ID field of the Student table and drag it onto the Student field of the Attends table. A line should appear joining these two fields. This indicates that they are related. 3. Repeat for the Course field in the Attends table and the ID field in the Courses table. 4. In the first field of the query put FirstName, in the second field put LastName (both from the Students table) and in the third put CourseName from the Courses table then View the data. 5. Add fields as appropriate, then sort data by CourseName, and alphabetically within each course. e) How many people take each course 1. Start a new query, add the tables Course and Attends and link as before. 2. Show CourseName from Courses and Course from Attends. 3. Click on Totals button and change the value in the course column to count, then View the data. f) Creating Relationships Rather than having to tell Access each time you write a query about how the tables are related, it is possible to store this information permanently. 1. Choose Database Tools Tab from the menu line and then Relationships. 2. Select the tables Courses, Attends and Students. 3. As before drag a line from ID in Courses to Course in Attends. A window appears. 4. Click on Force referential integrity and then on Create. 5. Repeat for ID from Students and Student in Attends. 6. Close and Save. 7. In the Tables group on the sidebar, Open the Attends table and click on * (new record button). 8. Try entering student 500 on course 20. What happens? Why? g) Write queries to return the following records 1. Create a query to return all people under Create a query to return all males over Create a query to return all people whose LastName begins with a vowel. 4. Create a query to return all males born in End task 19

20 Forms Creating Simple Forms Forms can be used to search for, edit or delete records or add new records. Presenting the data in column form, one record at a time can be useful for tables with a large number of fields. The quickest way to create a simple form, accepting all the defaults is to select the table which forms the basis of the form, then select the Create tab and the click the Form icon in the Forms section. To have more control on what goes into the form: Select the Create tab; then More Forms from the Forms section; and then Form Wizard and follow the steps. Change the Layout of a Form Figure 12 To change the layout of the form, open it in Design View. Forms consist of a number of objects called Controls. The two main types of controls are Labels (left hand column in diagram) which never change and Text Boxes which contain the data from the underlying query (right hand column). When the form is created by a wizard the default id for all the controls in the detail section to be Stacked and considered as one object thus a change made to one of the controls affects them all. To deal with individual controls you need first to remove the stacking. Figure 13 Choose the Arrange tab and then Remove from the Control Layout section. Figure 14 20

21 Most controls come in pairs, a Label and a Text Box. Selecting a control highlights it with sizing boxes at the corners and edges with a large box at the top right. The associated Control is also selected but without the sizing buttons. To resize, click and drag one of the buttons, the mouse pointer will change to a double headed arrow. To move a control and its associate click in the control and drag, the mouse pointer is a four-headed arrow. To move a control independently from its associate click and drag the large sizing button at the top left of the control. Properties of individual objects may be changed in the properties window obtained by right clicking on the object and selecting Properties button (Figure 15). Some values can be entered directly, some chose from drop down lists which appear when you click on a particular attribute. To add extra controls to the form select them from the Tool bar and drag out a shape on the form. In many cases a wizard will run to help you set the values needed. Change any other properties as required. Figure 15 Task 4: Forms a) Return to tables 1. Click on the External Data Tab, then Excel Icon in the Import and link ribbon section. 2. Browse and select Address Data.xls and press Apply Import to new table, click OK. 3. Make sure the sheet Students address is selected and press Next. 4. Check the box which says First Row Contains Column Headings and press Next. 5. Press Next, then; 6. Select No Primary Key and press Next then press Finish. 7. Close the Save import steps 8. You should now have a table called Students address. 21

22 b) Create a simple form using Form Wizard 1. Click on the Create Tab and then on the Form Wizard icon; 2. From the Tables/Queries drop down select Students address from the list of Tables; 3. Click the double-arrowed button to select all fields and then click Next. 4. Select Columnar and then click Next. 5. Click on Finish. c) Move controls and delete unnecessary ones 1. Switch to Design View; 2. As the id field can t be edited it has no value on the form, so select and delete it. 3. Move and resize the other controls. d) Change the properties of controls 1. By using the Themes section of the design ribbon, change Fonts and Colours to improve the design of the form. e) Add controls to form (Exit) 1. From the Controls section of the design ribbon, select the Button icon (4 th from the left). Drag out a small rectangle on your form and then a Wizard should appear. From the Categories List choose Form Operations, and from the Actions List choose Close Form. Click on Next. 2. You then have a choice of either text on your button or one of two pictures. Make your choice and then click Next. 3. You are then asked for a name for the button, accept the default and press Finish. 4. Save your form and then open it, click on the button. What happens? f) Add controls to form (Add new record) 1. Repeat Task e) Add controls to Form (Exit) choosing Record Operations and Add New Record. When asked for a name for the button, call it addrec. Then save and test. g) Causing an action automatically 1. In Design View, open the properties window and click in the dark area to the right or below your form. The properties window should be headed Form. Click on Event. Choose On Open. 2. Click on the button with three dots and then choose Macro Builder. 3. Click on the Action Catalog icon and expand the In this database branch on the right pane until the macros become visible. 4. Select the addrec.onclick by double clicking on it. 5. Close and save changes. 6. Close the window, save your form and then run it. What happens now? End task 22

23 Reports To obtain a printout of results of queries or tables it is possible to open them and click on File Print. Note: changes to page layout are achieved in File Print Setup. However if you wish to have greater control over the layout of your results then the answer is to use a report. Although reports can be designed from new probably the best way to start is to use one of the report wizards and then to modify the result as required. Choose the Create tab then select Report Wizard from the Reports section Select the table or query that your report is going to be based on from the Tables/Queries list. Select those fields from your table or query you require. Click Next. Note: clicking the double arrow selects all fields. The next window allows you to group data so that all values for one Key appear together. Where relationships between tables have been established Access might make suggestions about groupings. Figure 16 Make your selection, and then click Next. The next window allows you to sort the results in the order required. Figure 17 Add the required fields, then click Next. Figure 18 23

24 Then comes a window asking which layout you would like. Note: the picture on the left of the window shows what each layout looks like. (Outline is probably the best for grouped data). Choose your preferred layout. Press Next. Enter a title for your report. Figure 19 Editing reports is done in the same way as editing forms. When you press Finish an automatically generated report is show in Print Preview. You can close print preview and it will take you back to Design View. Figure 20 Task 5: Reports a) Create a new query called Class list 1. Create a new query from courses, attends and students containing the following fields: CourseName, Tutor, Day, Room, FirstName, LastName and dob. 2. Call the query class list. b) Create a report to show Class list 1. Click on Create Tab and Report Wizard. 2. In the Report Wizard dialogue box, Select the query Class list, from the dropdown menu. 3. Click on the double arrow to select all fields and then click Next. 4. Accept Viewing by CourseName by clicking Next. 5. No extra grouping is needed, so click Next. 6. Sort as ascending by LastName and FirstName, then click Next. 7. Choose Block and click Next. 8. Choose Preview the Report and click Finish. c) Make the report presentable 1. Using the same methods as for Form Design, change the design of this report in order to make it more presentable. 24

25 d) Creating labels 1. Click on the Students Address table in the left hand pane. 2. Select the Create Tab and the Label icon, a Label Wizard dialogue box should appear. 3. Change the Units of Measure to Metric and choose Avery type J8169 although if you have different labels then obviously choose the sort nearest to the ones you wish to use. 4. Click Next and choose the font and size you wish to use (Arial 10 is good enough for this exercise) 5. Create your label by typing in any text you wish or clicking on the arrow to get the field name which will be filled in with data when the report runs. Press Next. 6. Select any sorting you require and click Next. 7. Click Finish and view the labels. Contacts For queries or help ittraining@essex.ac.uk Useful resources Training videos Booking other Access training courses Online training End Task Microsoft Access training and support in transitioning to Access 2010 with Microsoft Tutorials. Your feedback Help us improve your training Your feedback is important to us. You will receive an asking you to complete an online feedback survey. Please take a few minutes to tell us what you think. 25

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

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

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

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

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

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

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

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

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

If the database that is required is similar to a template then whole database can be generated by using a template that already exists.

If the database that is required is similar to a template then whole database can be generated by using a template that already exists. Creating Tables There are many ways of creating tables; it depends on the fields required in the table and the complexity of the database to be set up as to how you create the tables. If the database that

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

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

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

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt

MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by

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

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

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

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

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

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

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

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

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

What is a database? The parts of an Access database

What is a database? The parts of an Access database What is a database? Any database is a tool to organize and store pieces of information. A Rolodex is a database. So is a phone book. The main goals of a database designer are to: 1. Make sure the data

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

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

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

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

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

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

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

More information

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

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

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual

Lab Manual. Databases. Microsoft Access. Peeking into Computer Science Access Lab manual Lab Manual Databases Microsoft Access 1 Table of Contents Lab 1: Introduction to Microsoft Access... 3 Getting started... 3 Tables... 3 Primary Keys... 6 Field Properties... 7 Validation Rules... 11 Input

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

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

Task Force on Technology / EXCEL

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

More information

Introduction to Microsoft Access

Introduction to Microsoft Access Welcome to Teach Yourself: Introduction to Microsoft Access This Teach Yourself tutorial explains the basic operations and terminology of Microsoft Access 2003, a database management program. Microsoft

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

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

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

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

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

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

- 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

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

Creating a Database Using Access 2003 for Windows 2000/Me/XP

Creating a Database Using Access 2003 for Windows 2000/Me/XP Creating a Database Using Access 2003 for Windows 2000/Me/XP Starting Access 2003 Double click on the Access 2003 icon on the Windows desktop (see right), or click-on the Start button in the lower left

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

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

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence ECDL Syllabus 5.0 Module 5 Using Databases ECDL Syllabus 5 Courseware Module 5 Contents UNDERSTANDING DATABASES... 1 KEY CONCEPTS...1 DATABASE ORGANIZATION...1 RELATIONSHIPS...3

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

How To Create A Database For Employee Records In A Club Account In A Computer System In A Cell Phone Or Cell Phone With A Cell Computer (For A Cell)

How To Create A Database For Employee Records In A Club Account In A Computer System In A Cell Phone Or Cell Phone With A Cell Computer (For A Cell) Creating a Database Lab 1 Objectives After completing this lab, you will know how to: 1 Plan, create, and modify a database. 2 Create and save a table structure. 3 Define field names, data types, field

More information

Making an online form in Serif WebPlus

Making an online form in Serif WebPlus Making an online form in Serif WebPlus Before you begin your form, it is a very good idea to plan it out on a piece of paper. Decide what information you wish to collect, and which type of fields will

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 2000

Microsoft Access 2000 Microsoft Access 2000 Level 1 Region 4 Teaching, Learning and Technology Center Kaplan, LA Activity 1 Creating a Database 1. Open Microsoft Access 2000 a. Click on START, highlight Programs, point and

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

Excel 2003 Tutorial I

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

More information

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

Microsoft Access XP Session 1 Week 8

Microsoft Access XP Session 1 Week 8 Creating a Database Click-on the Start button in the lower left corner of the screen, then click-on Programs, and then click-on Microsoft Access. New File The Access XP New File Task Pane will appear on

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

Microsoft Office. Mail Merge in Microsoft Word

Microsoft Office. Mail Merge in Microsoft Word Microsoft Office Mail Merge in Microsoft Word TABLE OF CONTENTS Microsoft Office... 1 Mail Merge in Microsoft Word... 1 CREATE THE SMS DATAFILE FOR EXPORT... 3 Add A Label Row To The Excel File... 3 Backup

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

C omputer D riving L icence

C omputer D riving L icence E uropean C omputer D riving L icence E C D L S y l l a b u s 5. 0 Module 5 Using Databases ECDL Syllabus 5 Courseware Module 5 Contents UNDERSTANDING DATABASES... 1 KEY CONCEPTS... 1 DATABASE ORGANIZATION...

More information

How to set up a database in Microsoft Access

How to set up a database in Microsoft Access Contents Contents... 1 How to set up a database in Microsoft Access... 1 Creating a new database... 3 Enter field names and select data types... 4 Format date fields: how do you want fields with date data

More information

Excel macros made easy

Excel macros made easy IT Training Excel macros made easy Jane Barrett, IT Training & Engagement Team Information System Services Version 1.1 Scope Learning outcomes Understand the concept of what a macro is and what it does.

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

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

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

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

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003

Databases with Microsoft Access. Using Access to create Databases Jan-Feb 2003 Databases with Microsoft Access Using Access to create Databases Jan-Feb 2003 What is a Database? An Organized collection of information about a subject. Examples: Address Book Telephone Book Filing Cabinet

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

Steps to Create a Database

Steps to Create a Database Steps to Create a Database Design the Database In order for a database to be effective some time should be spent on the layout of the table. Additionally, time should be spent on what the purpose of the

More information

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

User Services. Intermediate Microsoft Access. Use the new Microsoft Access. Getting Help. Instructors OBJECTIVES. July 2009 User Services July 2009 OBJECTIVES Develop Field Properties Import Data from an Excel Spreadsheet & MS Access database Create Relationships Create a Form with a Subform Create Action Queries Create Command

More information

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

Excel for Data Cleaning and Management

Excel for Data Cleaning and Management Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Microsoft Access is a computer application used to create and work with databases. In computer jargon that means it s a Database Management System or DBMS. So what is a database?

More information

Excel 2007 Basic knowledge

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

More information

Learning Services IT Guide. Access 2013

Learning Services IT Guide. Access 2013 Learning Services IT Guide Access 2013 Microsoft Access is a programme which allows you to store a lot of information easily in the form of a database. For example you could create a database which stored

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 2013 An Essential Guide (Level 1)

Microsoft Access 2013 An Essential Guide (Level 1) IT Training Microsoft Access 2013 An Essential Guide (Level 1) Contents Introduction...1 Starting Microsoft Access...1 The Access Screen...1 The Navigation Pane...2 Part 1: Using an Existing Table...3

More information

BusinessObjects: General Report Writing for Version 5

BusinessObjects: General Report Writing for Version 5 BusinessObjects: General Report Writing for Version 5 Contents 1 INTRODUCTION...3 1.1 PURPOSE OF COURSE...3 1.2 LEVEL OF EXPERIENCE REQUIRED...3 1.3 TERMINOLOGY...3 1.3.1 Universes...3 1.3.2 Objects...4

More information

Excel 2007 Tutorials - Video File Attributes

Excel 2007 Tutorials - Video File Attributes Get Familiar with Excel 2007 42.40 3.02 The Excel 2007 Environment 4.10 0.19 Office Button 3.10 0.31 Quick Access Toolbar 3.10 0.33 Excel 2007 Ribbon 3.10 0.26 Home Tab 5.10 0.19 Insert Tab 3.10 0.19 Page

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

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

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

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

Ohio University Computer Services Center July, 2004 Microsoft Access 2003 Reference Guide

Ohio University Computer Services Center July, 2004 Microsoft Access 2003 Reference Guide Ohio University Computer Services Center July, 2004 Microsoft Access 2003 Reference Guide Overview Access is a relational database management system (RDBMS). This is a type of database management system

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

ICDL Module 5: David Varley

ICDL Module 5: David Varley ICDL Module 5: Databases using OpenOffice.org Base David Varley IMPORTANT NOTICE All candidates who follow an ICDL/ECDL course must have an official CDL/ECDL Skills Log Book or Skills Card. Without such

More information

Access 2007 Overview

Access 2007 Overview Overview Computer Training Centre tcentre@ucc.ie 4903749/3751/3752 Contents Introduction... 4 What is a Database?... 4 Benefits of Using a Database... 4 Microsoft Access Description... 4 Elements of an

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

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