Access Intermediate

Size: px
Start display at page:

Download "Access Intermediate"

Transcription

1 Access Intermediate Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134 AC139 AC145 Wildcards Pages AC204 AC209 AC221 AC223 Relational Queries Pages AC110 AC111 Calculated Fields Pages AC145 AC150 AC224 - Using Conditional Functions Pages AC228 - AC Aggregate Fields Pages AC151 AC155 Parameter Queries Pages AC215 AC219 Top Value Queries Pages AC249 AC251 Update Queries Pages Delete Queries Pages Crosstab Queries Pages AC209 AC226 Finding Duplicate Records Pages AC246 AC247 Finding Orphan Records Pages AC247 AC249 Using SQL View Pages This icon designates a video is available as an additional reference. Video DVD is available in the Stevens Point library Queries Access 3: Introduction to Queries Queries allow the user to extract data from a database, across multiple tables. Queries can also show calculated data data that is not stored in the database. Queries can also be used to update data in a table or delete data from tables. 1

2 Select Queries Select queries are one way for the user to extract data from database tables Select the Create Ribbon, then the Query Design button in the Queries group. Select the tables to be used in this query If you miss one, you can add it later The QBE Grid appears Query by Example Table-like object in the bottom of the window Select the fields to be included in the query Double-click a field name to add it to the end of the list of fields in the QBE grid Can drag fields from the field list to the grid and drop (inserted before the field you drop it on) Ctrl-Click fields to select more than one Ctrl-Click again to remove from selected list Shift-Click to select a range of fields Can select all the fields by double-clicking the table name (all fields will highlight) then drag to grid. Changing the fields selected To select an existing field in the grid, point to the thin gray bar above the field name. Cursor should change to a thick, black arrow. Click to select, drag to select multiple columns (fields). Remove Fields Select the field(s) Press the delete key on the keyboard Move Fields Select the field(s) Point to the bar above the field until the cursor changes to a white arrow. Drag to new location (dark bar shows drop location) Create a query based on the Courses table Experiment with all techniques, then select all Remove the Description field 2

3 Executing (Running) the Query View button gives you a preview of the queries results Run query and then return to design mode Executes the query Preview and Execute are basically the same when doing Select Queries. They have different results when doing Update or Delete Queries. To return to design mode, click mode) (only appears in run Specifying the Sort Order Unless you specify otherwise, records in the query result are sorted by primary key Click in the Sort row of the field you want to sort by Choose the sort order Ascending (A-Z, 1-10) Descending (Z-A, 10-1) Note you can also remove sorting here You can choose a secondary sort key This field will be used when the data in the primary sort field is the same (tie breaker) NOTE: Secondary sort keys must always appear to the right of the primary sort key (there can be fields between them). You can change the display order in datasheet view (query results) if you need the fields to show in a different order. You can add third, fourth, etc sort keys if you need to Sort by Credits (desc), then by Course Name (asc). Run query, note incorrect sort order. Move Credits to the left of Course Name, run query again. Note tie breaker when credits are the same. 3

4 Specifying Query Criteria Access 3: Defining Record Selection Criteria for Queries Access 3: Defining Multiple Selection Criteria for Queries Criteria allow you specify criteria (conditions) that a record must meet in order to be included in the query results Specified in the Criteria rows of the QBE grid Click in the Criteria row of the field that the criteria applies to Comparison operators: > greater than >= greater than or equal to < less than <= less than or equal to <> not equal to = equal to (optional) not reverse result of condition Specifying different data types Surround text that is entirely comprised of digits with quotes Surround dates and times with # Tip: Try entering the criteria without the quotes or #. Often, Access will insert them automatically. If not, add them manually Credits > 3 Credits >= 3 See below 4

5 Wildcard * * represents any character, any number of characters, or no characters. Basically, * represents anything *smith matches any string that ends in smith also matches simply smith smith* matches any string the starts with the letters smith also matches simply smith *smith* matches any string of characters that contains smith anywhere, beginning, middle or end. Also matches simply smith Completely case insensitive Access adds the word Like to the criteria to make it compatible with standard SQL syntax. Tip: To use the wildcard with dates, specify the date in m/d/yyyy format. E.g. Like 7/*/2011 Between And Matches all numbers between the first number and the second number, including those two numbers Can also be used with text and dates In(value1, value2, value3 ) Matches all values that are contained in the list Can be used for numbers or text Multiple Criteria You can specify criteria for more than one field Records must match each criteria to be included in the query results AND condition (match this AND that AND that) Can also specify OR conditions match one criteria OR the other (or both) list each criteria in a different row (even if in different fields) Each row is considered a new criteria. If mix AND and OR conditions, must specify AND criteria in all rows Course Number 152* New query on Section (all fields) Start time between 9 and 12 (Use #) Semester in 1082, 1084 Combine time 9-12 and semester (1082, 1084) M or T And 3 credits 5

6 Renaming Fields in Query Results Can change the name of a field in the query result column header Most frequently used for calculated fields Place the desired field name before old field name (or equation) and separate with a colon (:) NOTE: Captions in table design override these names Specifying Criteria for Lookup Fields Remember that lookup fields actually store the primary key value (StudentID, Course Number) not the values shown in the lookup lists. You cannot specify a criteria of Like Prog* in the course lookup field To resolve this problem, use a relational query that combines fields from multiple tables (see next section) Change Section to Section Number (still Section #) Change Days to Meeting Days Try searching for all programming classes Prog* (no results) Relational Queries Relational queries allow you to combine results from more than one table. Build query exactly the same way except add more than one table To add a table at a later time, click the Show Table button in the Query Setup group of the Query Tools Design Ribbon If table relationships are not defined, define them here Drag field from parent to matching field in child Add fields from any table in any order Lookup fields will automatically show the lookup value (from table design mode) If don t want the lookup, add the key from the parent instead of the linking field from the child Sort using any fields from any combinations of tables Specify criteria from any fields from any tables Add Courses, Enrollments and Students tables to a new query Add Sections Lname, Fname, Course Number (from section), Semester, Section, Credits Earned Where semester is 1076 Note course number converted to course name. Replace course number with course number and name from Courses Find Programming courses Taken by Ambrose 6

7 Creating Calculated Fields Access 3: Creating a Calculated Field With the power of today s computers, Access can quickly combine data from multiple fields into equations that calculate new values that are not stored in the data but only appear in the results of a query. Calculated fields can also be included in forms and reports Because of this fact, most database designers remove all fields from the database that can be calculated and use queries to calculate the values only when needed. The true power comes from Access ability to combine fields from multiple tables in one equation The easiest way to create calculated fields in Access is to use the Expression Builder The Expression Builder allows you to select fields from a list and operators from a list to create complicated (or simple) equations. The alternative is to type the field names and operators manually, which is more susceptible to errors. 7

8 Create a query in design view Add non-calculated fields to the query Optional. A query can be comprised of just calculated fields, or the calculated fields can precede the non-calculated fields. Often, the support data used in the calculation is included in the query as well. Tip: If you include non-calculated fields, save the query before defining your calculated fields. The query s fields will display in the Expression Builder s Expression Categories column Click in the next available QBE column Field row Click the Expression Builder button in the Query Tools Design tab, Query Setup group. In the Expression Categories column (center), doubleclick the field name to insert it into the expression Access includes [square brackets] around field names (in case they have spaces in them) If the field doesn t appear in the Expression Categories column (did you save the query?), in the Expression Elements column: Click the + next to the database name Click the + next to Table Click the appropriate table name The fields for that table will appear in the Expression Categories column Enter operators for the equation by typing them + - * / Order of precedence (like in Excel) applies * / are processed first, followed by + - Use parentheses to override order of precedence Repeat for all fields and operators to be included in the equation Use regular editing techniques (delete, highlighting, etc) to change the expression if necessary 8

9 Access will not verify the validity of your equation until you try to run the query. Error messages often don t help determine what s wrong. To correct the error, click the calculated field in the QBE and launch the Expression Builder again. The Expression Builder will already include the equation you entered previously. Proofread your equation to uncover the error. If you get the Enter Parameter Value dialog box, you inserted a field in the equation that Access doesn t recognize. Naming the Calculated field By default, Access names the calculated field Expr# This name is not very handy if you need to refer to the field at a later time (form, report or another query) One technique you could use is to change the field s Caption using its properties (see Formatting Calculated Fields below) I prefer to add the name of the field in the QBE grid itself. Point to Expr# at the beginning of the equation in the QBE grid Double-click Expr# to select it. Type a new name for the field. CAUTION: don t delete the colon ( : ) that follows the field name. It must be there to separate the field name from the equation. Tip: You can enter the field name in the Expression Builder. Precede the expression with your field name followed by a colon. Tip: Don t include spaces in your calculated fields (unlike the book examples). Put spaces in the caption (see below) just like you did with regular fields in Tutorial 2. 9

10 Formatting Calculated Fields Normal fields have their formatting designated in the query s design structure, but calculated fields are not included in the structure. To change the formatting of a calculated field, you must access it s properties Right-click the field and select Properties from the popup menu Or, click the Property Sheet button in the Query Tools Design tab, Show/Hide group In the Properties dialog box, designate the format for the field and if appropriate the number of decimal places. Tip: You can leave the Properties dialog box open and format multiple fields. Tip: Select multiple fields (see above) to change all their properties to the same values at once. You can also designate a Caption for the calculated field in the Properties window. You can use a calculated field as a sort field in a query You can include criteria in calculated fields. To use a calculated field to create another calculated field, you must first save the query. When you then reopen the Expression Builder, the calculated field will be included in the Expression Categories list Concatenation is a programming term for sticking two (or more) strings together. Handy in many database queries Operator is & or + Can include string literals which are characters that are surrounded by apostrophes or quotes (pick one) These characters appear in the concatenation exactly as you type them. Format Stock Value for standard, 2 Add caption (with space) Sort by Stock value descending Save as qrycalculation tblcustomer concatenate last and first names, area code and phone Save as qryconcatenation 10

11 Using Conditional Functions in Calculated Fields If you watched closely, you may have noticed that Access comes with many predefined functions that you can use to create calculated fields (similar to Excel functions) Two convenient functions are ISNULL and IIF ISNULL is a Boolean function (results in True or False) that allows you check to see if a field has been left blank. You cannot check for blank fields by using =0 or = "" The function is easy to use. Simply insert the field name you want to check inside (parentheses) that follow the field name. Ex. ISNULL(MobilePhone) Be sure to use the field name, not the caption. ISNULL is typically used with an IIF statement IIF (Immediate IF or Inline IF) allows you to ask a Yes/No question and process one way if the answer is yes and a different way if the answer is no. IIF(condition, true processing, false processing) IIF includes three parts after the parenthesis Condition to be checked must result in a yes/no answer often uses the relational operators used to designate criteria Boolean functions like ISNULL are also commonly used here True processing What should be done if the condition is true False processing 11

12 Examples IIF(gender="F", "Ms.", "Mr.") Results in Ms. for females and Mr. for males IIF(ISNULL(Company), LastName & ", " & FirstName, Company) Split over three lines for readability Classic example from book. Customers may be companies or individuals. If the Company field is blank (null), individual s last and first name (concatenated) are used. If the Company field is not blank (false), company name is used. Note how quotation marks surround actual text values (could use apostrophes as well) Summary / Aggregate Fields Aggregate fields combine data from many records to calculate statistics: sum, average, min, max, count Select the fields to calculate statistics for (add to QBE grid) (you can list fields more than once Click the Totals button on the toolbar A new Total: row will be added to the QBE grid For each field, select the statistic you want calculated in the Totals row You can also specify criteria for records to be added to the aggregate query. Set Totals row to Where Specify criteria Grouping totals In addition to calculating totals, you can also calculate subtotals by grouping the statistics. Grouping creates subtotals for each unique value found in the grouping field. You can create multiple levels of grouping Select Enrollments and Sections tables Select Semester, CreditsEarned Specify 1082 as the criteria for the Semester row. Run query Group by Student (ID) Lookup automatically changed to name Remove criteria, run query Add additional grouping by semester (Desc) 12

13 Parameter Queries Access 5: Creating a Parameter Query Sometimes, the criteria for a query is not known at design time; we want the user to enter the criteria when the query is run. Parameter queries allow the user to enter criteria when the query is run In the criteria row for the appropriate field, enter a prompt describing what information the user should enter. SURROUND THE PROMPT WITH [SQUARE BRACKETS ]. Set Semester Totals row back to Where (remove sort) Enter a parameter query for semester. Run the query Try a wildcard 108? That s it!!! When the user runs the query, a dialog box appears first, asking the user to enter the appropriate value (using the prompt you specified. You can specify more than one parameter in a query. Multiple dialog boxes will appear, one after the other. Users can be allowed to enter wildcards in the parameters, but the parameter must be preceded by Like You can also include relation operators (< > etc.) in the criteria before the parameter. Tip: for even more flexibility (for the user) include wildcards around the parameter. Like * & [Enter a color:] & * Matches any record that contains the color the user entered If user enters blue this will match Blue Green, Light Blue, etc. This has a side effect of displaying all records if the user enters nothing for the prompt. Without the wildcards, if the user enters nothing, nothing ends up in the result set. Tip: To run a parameter query again without switching back and forth between Design and Datasheet view, press the F5 key in Datasheet view or click the Refresh All button in the Home tab, Records group. 13

14 Top Value Queries Often, you (or management) will not want to see all the records in a result set, but only the top records. Only the top 10% of students are honor students Access makes this very easy. Key Concept: In order to generate a top query your query must be sorted on the correct field. To find the honor students, you have sort by GPA, descending. First specifying all query requirements (fields, criteria, sorting) Tip: Sort ascending to find the bottom and descending to find the top Next, use the Return: option in the Query Tools Design tab, Query Setup group to designate which records should be included. Click the dropdown arrow to select from commonly used options Alternatively, type the number or percent of records you want to see in the Return: box. Run the query. 14

15 Update Queries Update queries allow you to change values in multiple fields in many records with one command. I suggest you test the query in Select mode first to ensure the correct records are selected before running the Update query. It s not a bad idea to create a backup copy the database before doing update or delete queries. Create a new query like always. Select fields and specify criteria to designate which rows should be changed. Designate you want to make an update query by clicking New query on Sections Change the start time for all Business Law courses to 8 a and end time to 10 a Preview Run Convert to Select query Check results the Update button in the Query Type group of the Query Tools Design Ribbon Enter data in the Update To: row for the appropriate field whose value should be changed. Click the View button on the toolbar to preview the records that will be changed. Not much help, but a good double-check Click the Run button on the toolbar to actually execute the update query THERE IS NO UNDO FOR THE UPDATE QUERY!! 15

16 Delete Queries Delete queries allow you to delete records that meet specified criteria It s not a bad idea to create a backup copy the database before doing update or delete queries. Create a new query like always Designate you want to make a delete query by clicking For information only. the Delete button in the Query Type group of the Query Tools Design Ribbon Select the fields and criteria necessary to designate the records to be deleted. Click the View button on the toolbar to preview the records that will be changed. Not much help, but a good double-check Click the Run button on the toolbar to actually execute the update query THERE IS NO UNDO FOR THE DELETE QUERY!! 16

17 Crosstab Queries Access 5: Creating a Crosstab Query Crosstab queries create tables of statistics for two fields Crosstab queries are very similar to PivotTables created in Excel This is one kind of query that I use the Query Wizard (Create Ribbon, Queries group) to help with the process. Click the Query Wizard button. Select the Crosstab Query Wizard Select the table that contains the appropriate data Select the field to be used as the row heading Multiple fields create subtotals Select the field for the columns Tip: I think about how many unique values the row header field and column header field will have. The field with most unique values generally works best as the row header Columns and rows can be reversed with no effect on the data and reversing them is pretty easy to do in Design mode. Select the field and the statistic to be calculated Name your query Note that the wizard automatically creates an extra column that holds the total for each row in the crosstab Check out Design view. Many features could be customized. Crosstab, Update and Delete queries get different kinds of icons in the Navigation Pane than Select queries and grouped (by type) in the Queries list. Create a query that lists all the courses taken by all the students in each semester and the credits earned. (Use qrystudentlu) Save as qrystudentcourses Create a crosstab query that shows the number of courses each student (row) has taken in each semester (col). Remove the total row If time allows, convert course count to credit count and include total 17

18 Dealing with Yes/No fields in Crosstabs If your column (maybe row) field is a Yes/No field, Access uses -1 (yes) and 0 (no) for the field values (column headings). This is usually confusing and unacceptable. To make the column heading more meaningful Switch to Design view. Zoom in on the Yes/No field column Use the IIF function to convert the -1/0 to more acceptable values Example: IIF(Fulltime, "Fulltime", "Part-Time") This checks the Fulltime field. If it is -1 (yes, true) the column heading displays Fulltime. Otherwise, the column heading displays Part-Time. Don t forget the quotes Finding Duplicate Records As mentioned in Unit 1, tables are often designed using artificial keys key values that are made up to simplify database design (E.g. CustomerID, StudentID) These kinds of fields are usually Autonumber fields. When you use these kinds of keys, Access cannot directly check to see if the database contains duplicate records because the Autonumber values are never duplicated. John Smith could accidentally be added to the database twice, be given two distinct CustomerID numbers and be sent all mailings twice. Though this can be annoying (getting two mailings) it will also cause inaccuracies in any statistics that are created be the duplicate record s values will be used more than once. A common query, Find Duplicates, can be used to locate duplicate records. 18

19 Because it s so common, Access includes a wizard to make the process easier. Create a query using the Query Wizard and select the Find Duplicates option. The wizard dialog boxes will guide you through the process. Select the table you want to find duplicate records in. Select the logical key field (or fields). These are the fields that you feel might contain incorrect, duplicate data (as opposed to fields where you expect duplicate data). Select additional fields you d like to see in the query results. These fields should include the primary key and might include other fields to help you verify which records are duplicated. Designate the name for the query. The query results will automatically be sorted by the logical key fields you selected, making recognizing duplicate records easier. Caution: when you delete the duplicate record be sure to delete the correct one. Also be sure to reassign and child records where the linking field value is the duplicate record ID to the correct record ID. Do you see why avoiding duplicate records in the first place is a good idea? Finding Orphan Records Orphan records are records in a child table that have no corresponding record in the parent table. An order record whose customer number doesn t exist A course section record whose instructor number doesn t exist. Access avoids orphan records by requiring you to select a linking field value that exists in the parent table if Referential Integrity is set for the relationship. Orphan records (in Access) are only possible if referential integrity is not on (and it always should be). NOTE: This type of query can also be used to find parent records without child records. Customers who have not placed orders Students who haven t registered for classes. 19

20 Access also includes a wizard for creating a Find Unmatched Query (what Access calls orphan records) Create a query using the Query Wizard and select the Find Unmatched option. The wizard dialog boxes will guide you through the process. First select the table that does have records Note this could be a query Select the table that you suspect has missing records Designate which field the tables have in common (linking field) Select the fields you want to see in the results. Select enough fields to help you recognize which records have issues. Name the query. The query results will show which records in the first table have NO corresponding records in the second table. Using SQL View Whenever you build a query in Access (any kind of query), Access automatically creates the SQL that corresponds to your query designations. SQL-Structured Query Language-is a (fairly) standard language used by all database programs to represent query requirements. Normally, you won t need to use this view, but if you were to start developing programs that manipulate databases, you ll have to become familiar with SQL. SQL View in Access can help you learn SQL. Create a query in Access using the QBE grid or a Wizard and then switch to SQL View to see the corresponding SQL Some extremely complex queries can only be created using SQL they are too complicated for the QBE grid Parameter queries created by Access do NOT transfer directly to other implementations of SQL To view the SQL for a query, click the View button in the Views group of the Home Ribbon and select the SQL View option. You can actually edit the query here if you know SQL. The QBE will reflect the changes if possible. 20

Access Intermediate

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

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate (103-134) Building Access Databases Notes Quick Links Building Databases Pages AC52 AC56 AC91 AC93 Building Access Tables Pages AC59 AC67 Field Types Pages AC54 AC56 AC267 AC270

More information

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related

Enforce Referential. dialog box, click to mark the. Enforce Referential. Integrity, Cascade Update Related Fields, and. Cascade Delete Related PROCEDURES LESSON 8: MANAGING RELATIONSHIPS BETWEEN TABLES Renaming a Table 1 In the Navigation pane, right-click the table you want to rename 2 On the shortcut menu, click Rename 3 Type the new table

More information

Complete Quick Reference Summary

Complete Quick Reference Summary Microsoft Access 2010 Complete Quick Reference Summary Microsoft Access 2010 Quick Reference Summary Advanced Filter/Sort, Use AC 153 Advanced button (Home tab Sort & Filter, Advanced Filter/Sort) All

More information

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment.

Objective 1: Familiarize yourself with basic database terms and definitions. Objective 2: Familiarize yourself with the Access environment. Beginning Access 2007 Objective 1: Familiarize yourself with basic database terms and definitions. What is a Database? A Database is simply defined as a collection of related groups of information. Things

More information

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key

Getting started with Ms Access Getting Started. Primary Key Composite Key Foreign Key Getting started with Ms Access 2007 Getting Started Customize Microsoft Office Toolbar The Ribbon Quick Access Toolbar Navigation Tabbed Document Window Viewing Primary Key Composite Key Foreign Key Table

More information

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action

As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action As your databases continue to evolve, you will need to incorporate advanced queries and reports. This chapter addresses how to create and use action queries and how to create queries that perform more

More information

Creating a Crosstab Query in Design View

Creating a Crosstab Query in Design View Procedures LESSON 31: CREATING CROSSTAB QUERIES Using the Crosstab Query Wizard box, click Crosstab Query Wizard. 5. In the next Crosstab Query the table or query on which you want to base the query. 7.

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

Microsoft Access XP Queries. Student Manual

Microsoft Access XP Queries. Student Manual Microsoft Access XP Queries Student Manual Duplication is prohibited without the written consent of The Abreon Group. Foster Plaza 10 680 Andersen Drive Suite 500 Pittsburgh, PA 15220 412.539.1800 800.338.5185

More information

Access Intermediate

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

More information

Name: Class: Date: Access Module 2

Name: Class: Date: Access Module 2 1. To create a new query in Design view, click CREATE on the ribbon to display the CREATE tab and then click the button to create a new query. a. Query b. Design View c. Query Design d. Select Query ANSWER:

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Select Queries Norm Downey Chapter 2 pages 173 193 and Chapter 3 pages 218 249 2 1 This PowerPoint uses the Sample Databases on the class website Please download them now

More information

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed:

Follow these steps to get started: o Launch MS Access from your start menu. The MS Access startup panel is displayed: Forms-based Database Queries The topic presents a summary of Chapter 3 in the textbook, which covers using Microsoft Access to manage and query an Access database. The screenshots in this topic are from

More information

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design

New Perspectives on Access Module 5: Creating Advanced Queries and Enhancing Table Design New Perspectives on Access 2016 Module 5: Creating Advanced Queries and Enhancing Table Design 1 Objectives Session 5.1 Review object naming standards Use the Like, In, Not, and & operators in queries

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

Access - Introduction to Queries

Access - Introduction to Queries Access - Introduction to Queries Part of managing a database involves asking questions about the data. A query is an Access object that you can use to ask the question(s). The answer is contained in the

More information

Microsoft Access XP (2002) - Advanced Queries

Microsoft Access XP (2002) - Advanced Queries Microsoft Access XP (2002) - Advanced Queries Group/Summary Operations Change Join Properties Not Equal Query Parameter Queries Working with Text IIF Queries Expression Builder Backing up Tables Action

More information

Microsoft Access 2010

Microsoft Access 2010 Microsoft Access 2010 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Introduction to Microsoft Access 2016

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

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access 2013

Microsoft Access 2013 Microsoft Access 2013 Chapter 2 Querying a Database Objectives Create queries using Design view Include fields in the design grid Use text and numeric data in criteria Save a query and use the saved query

More information

Microsoft Access XP (2002) Queries

Microsoft Access XP (2002) Queries Microsoft Access XP (2002) Queries Column Display & Sorting Simple Queries And & Or Conditions Ranges Wild Cards Blanks Calculations Multi-table Queries Table of Contents INTRODUCTION TO ACCESS QUERIES...

More information

CartêGraph Training Navigator

CartêGraph Training Navigator Navigator Agenda Overview Creating a Database Creating New Data Link Formating a Database Navigator Bar Connectivity Bar Toolbar Status Bar Records Adding Records Editing Records Saving Records Logging

More information

Microsoft Access Illustrated. Unit B: Building and Using Queries

Microsoft Access Illustrated. Unit B: Building and Using Queries Microsoft Access 2010- Illustrated Unit B: Building and Using Queries Objectives Use the Query Wizard Work with data in a query Use Query Design View Sort and find data (continued) Microsoft Office 2010-Illustrated

More information

ADD AND NAME WORKSHEETS

ADD AND NAME WORKSHEETS 1 INTERMEDIATE EXCEL While its primary function is to be a number cruncher, Excel is a versatile program that is used in a variety of ways. Because it easily organizes, manages, and displays information,

More information

Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK

Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK Shelly Cashman Series Microsoft Office 365 and Access 2016 Introductory 1st Edition Pratt TEST BANK Full clear download (no formatting errors) at: https://testbankreal.com/download/shelly-cashman-series-microsoft-office-365-access-

More information

Microsoft Access 2016 Intro to Select Queries

Microsoft Access 2016 Intro to Select Queries Microsoft Access 2016 Intro to Select Queries training@health.ufl.edu Access 2016: Intro to Select Queries 2.0 hours Queries compile data from tables into a desired dataset. You can choose multiple fields

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access Creating Queries Norm Downey This PowerPoint uses the Sample Databases on the class website Please download them now 2 1 What is a Query? Queries allow the user to manipulate the

More information

Access 2003 Introduction to Report Design

Access 2003 Introduction to Report Design Access 2003 Introduction to Report Design TABLE OF CONTENTS CREATING A REPORT IN DESIGN VIEW... 3 BUILDING THE REPORT LAYOUT... 5 SETTING THE REPORT WIDTH... 5 DISPLAYING THE FIELD LIST... 5 WORKING WITH

More information

Database Design Practice Test JPSFBLA

Database Design Practice Test JPSFBLA 1. You see field names, data types, and descriptions in: a. Datasheet View c. Form View b. Design View d. Property View 2. The data type for insurance policy numbers, such as 0012-M-340-25 or 43F33-7805,

More information

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table.

Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. 6. You can use a table s sizing handle to add columns or rows to a table. Excel Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts TRUE/FALSE 1. The header row must be row 1. ANS: F PTS: 1 REF: EX 234 2. If you freeze the top row in a worksheet and press Ctrl+Home,

More information

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE

Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards C30147 RELATIONAL DATABASE C30147 RELATIONAL DATABASE Level 6 Relational Database Unit 3 Relational Database Development Environment National Council for Vocational Awards This module has been developed to further the learner s

More information

Microsoft Office 2010: Introductory Q&As Access Chapter 2

Microsoft Office 2010: Introductory Q&As Access Chapter 2 Microsoft Office 2010: Introductory Q&As Access Chapter 2 Is it necessary to close the Navigation Pane? (AC 78) No. It gives you more room for the query, however, so it is usually a good practice to hide

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Tutorial 3 Maintaining and Querying a Database. Finding Data in a Table. Updating a Database

Tutorial 3 Maintaining and Querying a Database. Finding Data in a Table. Updating a Database Tutorial 3 Maintaining and Querying a Database Finding Data in a Table Must navigate to a record before view/delete/change it Find is a great way to navigate to a record But... Find can t: show matching

More information

Microsoft Office Illustrated Introductory, Building and Using Queries

Microsoft Office Illustrated Introductory, Building and Using Queries Microsoft Office 2007- Illustrated Introductory, Building and Using Queries Creating a Query A query allows you to ask for only the information you want vs. navigating through all the fields and records

More information

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41

Rev. C 11/09/2010 Downers Grove Public Library Page 1 of 41 Table of Contents Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 Office Button... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 8 Making

More information

Microsoft Certified Application Specialist Exam Objectives Map

Microsoft Certified Application Specialist Exam Objectives Map Microsoft Certified Application Specialist Exam Objectives Map This document lists all Microsoft Certified Application Specialist exam objectives for (Exam 77-605) and provides references to corresponding

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Multiple Worksheets Quick Links Manipulating Sheets Pages EX16 EX17 Copying Worksheets Page EX337 Grouping Worksheets Pages EX330 EX332 Multi-Sheet Cell References Page

More information

Excel Tables and Pivot Tables

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

More information

Using Microsoft Excel

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

More information

Excel 2010: Basics Learning Guide

Excel 2010: Basics Learning Guide Excel 2010: Basics Learning Guide Exploring Excel 2010 At first glance, Excel 2010 is largely the same as before. This guide will help clarify the new changes put into Excel 2010. The File Button The purple

More information

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4

INTRODUCTION... 1 UNDERSTANDING CELLS... 2 CELL CONTENT... 4 Introduction to Microsoft Excel 2016 INTRODUCTION... 1 The Excel 2016 Environment... 1 Worksheet Views... 2 UNDERSTANDING CELLS... 2 Select a Cell Range... 3 CELL CONTENT... 4 Enter and Edit Data... 4

More information

Working with Macros. Creating a Macro

Working with Macros. Creating a Macro Working with Macros 1 Working with Macros THE BOTTOM LINE A macro is a set of actions saved together that can be performed by issuing a single command. Macros are commonly used in Microsoft Office applications,

More information

Excel 2007 New Features Table of Contents

Excel 2007 New Features Table of Contents Table of Contents Excel 2007 New Interface... 1 Quick Access Toolbar... 1 Minimizing the Ribbon... 1 The Office Button... 2 Format as Table Filters and Sorting... 2 Table Tools... 4 Filtering Data... 4

More information

Excel Tables & PivotTables

Excel Tables & PivotTables Excel Tables & PivotTables A PivotTable is a tool that is used to summarize and reorganize data from an Excel spreadsheet. PivotTables are very useful where there is a lot of data that to analyze. PivotTables

More information

Veco User Guides. Grids, Views, and Grid Reports

Veco User Guides. Grids, Views, and Grid Reports Veco User Guides Grids, Views, and Grid Reports Introduction A Grid is defined as being a list of data records presented to the user. A grid is shown generally when an option is selected from the Tree

More information

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5)

DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DEVELOPING DATABASE APPLICATIONS (INTERMEDIATE MICROSOFT ACCESS, X405.5) Section 4 AGENDA

More information

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access This module was developed to assist students in passing the SkillCheck Incorporated Access 2003 Technology Competency Assessment. It was last updated

More information

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4)

DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DESIGNING, BUILDING, AND USING DATABASES (BEGINNING MICROSOFT ACCESS, X405.4) Section 3 AGENDA

More information

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction.

Chapter11 practice file folder. For more information, see Download the practice files in this book s Introduction. Make databases user friendly 11 IN THIS CHAPTER, YOU WILL LEARN HOW TO Design navigation forms. Create custom categories. Control which features are available. A Microsoft Access 2013 database can be a

More information

Microsoft Access 2016

Microsoft Access 2016 Access 2016 Instructor s Manual Page 1 of 10 Microsoft Access 2016 Module Two: Querying a Database A Guide to this Instructor s Manual: We have designed this Instructor s Manual to supplement and enhance

More information

Microsoft Access 2016

Microsoft Access 2016 Access 2016 Instructor s Manual Page 1 of 10 Microsoft Access 2016 Module Two: Querying a Database A Guide to this Instructor s Manual: We have designed this Instructor s Manual to supplement and enhance

More information

EXCEL TUTORIAL.

EXCEL TUTORIAL. EXCEL TUTORIAL Excel is software that lets you create tables, and calculate and analyze data. This type of software is called spreadsheet software. Excel lets you create tables that automatically calculate

More information

Access Module 2: Building and Using Queries

Access Module 2: Building and Using Queries 1. A query allows the selection of a subset of fields and records from one or more tables, then presents the selected data as a single datasheet. True REFERENCES: Access 28 Use the Query Wizard LEARNING

More information

Preview. MS Access Tutorial. Data Files Available on

Preview. MS Access Tutorial. Data Files Available on MS Access Tutorial M Preview After a database has been designed properly it must be implemented and the applications that make the database useful to the end users must be developed. Microsoft Access is

More information

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need

Using Reports. Access 2013 Unit D. Property of Cengage Learning. Unit Objectives. Files You Will Need Unit D CASE Samantha Hooper, a tour developer at Quest Specialty Travel, asks you to produce some reports to help her share and analyze data. A report is an Access object that creates a professional looking

More information

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities

Links to Activities ACTIVITY 4.1. Links to Activities Links to Activities ACCESS SUMMARIZING DATA AND CALCULATING IN FORMS AND REPORTS Section 4 Skills Use functions in a query to calculate statistics Summarize data in a crosstab query Summarize data in a PivotTable Summarize

More information

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40

Rev. B 12/16/2015 Downers Grove Public Library Page 1 of 40 Objectives... 3 Introduction... 3 Excel Ribbon Components... 3 File Tab... 4 Quick Access Toolbar... 5 Excel Worksheet Components... 8 Navigating Through a Worksheet... 9 Downloading Templates... 9 Using

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Interfaces 2 Basic Macros 2 Exercise 1. Creating a Test Macro 2 Exercise 2. Creating a Macro with Multiple Steps 3 Exercise 3. Using Sub Macros 5 Expressions

More information

Word Module 5: Creating and Formatting Tables

Word Module 5: Creating and Formatting Tables Illustrated Microsoft Office 365 and Office 2016 Intermediate 1st Edition Beskeen Test Bank Full Download: http://testbanklive.com/download/illustrated-microsoft-office-365-and-office-2016-intermediate-1st-edition-beskee

More information

STIDistrict Query (Basic)

STIDistrict Query (Basic) STIDistrict Query (Basic) Creating a Basic Query To create a basic query in the Query Builder, open the STIDistrict workstation and click on Utilities Query Builder. When the program opens, database objects

More information

Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla

Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla Advanced Queries: Moving Beyond the Select Query Instructor: Edwin V. Bonilla Based on slides by Robert Grauer, Keith Mast, Mary Anne Poatsy COMP1000 Pearson Education 2011 or UNSW, CRICOS Provider No:

More information

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database

Microsoft Office Access Learn how to use the Query window in Design view. Tutorial 3b Querying a Database Microsoft Office Access 2003 Tutorial 3b Querying a Database 1 Learn how to use the Query window in Design view The Query window in Design view allows you to specify the results you want for a query. In

More information

ICDL & OOo BASE. Module Five. Databases

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

More information

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design

CHAPTER 6 SUMMARY. Objective 1: Identify Good Database Design Objective 1: Identify Good Database Design CHAPTER 6 SUMMARY A database is an organized collection of data facts about people, events, things, or ideas related to a specific topic or purpose. Information

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access USING MICROSOFT ACCESS 1 Forms & Reports 2 Forms 2 Using Auto Forms 2 Exercise 1. Creating a Datasheet Auto Form 3 Exercise 2. Creating a Tabular Auto Form 4 Exercise 3. Creating

More information

MIS Cases: Decision Making With Application Software, Second Edition. Database Glossary

MIS Cases: Decision Making With Application Software, Second Edition. Database Glossary MIS Cases: Decision Making With Application Software, Second Edition Database Glossary This database glossary is designed to accompany MIS Cases: Decision Making With Application Software, Second Edition,

More information

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling

Access Review. 4. Save the table by clicking the Save icon in the Quick Access Toolbar or by pulling Access Review Relational Databases Different tables can have the same field in common. This feature is used to explicitly specify a relationship between two tables. Values appearing in field A in one table

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

Microsoft Excel 2010

Microsoft Excel 2010 www.jadehorizon.com Microsoft Excel 2010 Sorting and Filtering Sorting and Filtering Microsoft Excel 2010 Table of Contents Table of Contents INTRODUCTION... 3 CONVENTIONS... 3 TABLE DESIGN RULES... 5

More information

Database Use & Design

Database Use & Design Database Use & Design 1 Important Terms and Definitions Database A collection of information organized in such a way that a computer program can quickly select desired pieces of data. Field Form Primary

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access 2010 Basics March 2011 Files Used in this class: Faculty.accdb (created in class) Optional files for attachment field: Word_Encryption_Security_Tips_1.DOCX StudentinLibrary1.jpg StudentinLibrary2.jpg

More information

EXCEL BASICS: MICROSOFT OFFICE 2010

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

More information

Excel Intermediate

Excel Intermediate Excel 2013 - Intermediate (103-124) Advanced Functions Quick Links Range Names Pages EX394 EX407 Data Validation Pages EX410 EX419 VLOOKUP Pages EX176 EX179 EX489 EX500 IF Pages EX172 EX176 EX466 EX489

More information

Tutorial 5 Advanced Queries and Enhancing Table Design

Tutorial 5 Advanced Queries and Enhancing Table Design Tutorial 5 Advanced Queries and Enhancing Table Design (Sessions 1 and 3 only) The Clinic Database Clinic.accdb file for Tutorials 5-8 object names include tags no spaces in field names to promote upsizing

More information

Using Microsoft Access

Using Microsoft Access Using Microsoft Access After Tables, are perhaps the most important component in a database. are used to retrieve information from a database. Once again, a telephone directory can be used for an example

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Blackboard for Faculty: Grade Center (631) In this document:

Blackboard for Faculty: Grade Center (631) In this document: 1 Blackboard for Faculty: Grade Center (631) 632-2777 Teaching, Learning + Technology Stony Brook University In this document: blackboard@stonybrook.edu http://it.stonybrook.edu 1. What is the Grade Center?..

More information

Chapter 4: Single Table Form Lab

Chapter 4: Single Table Form Lab Chapter 4: Single Table Form Lab Learning Objectives This chapter provides practice with creating forms for individual tables in Access 2003. After this chapter, you should have acquired the knowledge

More information

Microsoft Access 2010 Select Queries

Microsoft Access 2010 Select Queries Microsoft Access 2010 Select Queries Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Access 2010: Select Queries 2.0 hours Topics include table filters, select queries,

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Microsoft Access 2016 Intro to Forms and Reports

Microsoft Access 2016 Intro to Forms and Reports Microsoft Access 2016 Intro to Forms and Reports training@health.ufl.edu Access 2016: Intro to Forms and Reports 2.0 hours Topics include using the AutoForm/AutoReport tool, and the Form and Report Wizards.

More information

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification.

When you pass Exam : Access 2010, you complete the requirements for the Microsoft Office Specialist (MOS) - Access 2010 certification. Appendix 1 Microsoft Office Specialist: Access Certification Introduction The candidates for Microsoft Office Specialist certification should have core-level knowledge of Microsoft Office Access 2010.

More information

ACCESS 2007 FOUNDATION

ACCESS 2007 FOUNDATION ACCESS 2007 FOUNDATION WWP Learning and Development Ltd Page i STUDENT EDITION LESSON 1 - EXPLORING ACCESS... 1 Introduction... 1 Opening An Existing Database... 4 Converting Existing Databases... 5 The

More information

Microsoft Word 2010 Introduction to Mail Merge

Microsoft Word 2010 Introduction to Mail Merge Microsoft Word 2010 Introduction to Mail Merge Elizabeth Wells February 2012 Copyright 2012 ElizabethWells All rights reserved. Except as permitted under current legislation, no part of this work may be

More information

PowerPoint Presentation to Accompany GO! All In One. Chapter 13

PowerPoint Presentation to Accompany GO! All In One. Chapter 13 PowerPoint Presentation to Accompany GO! Chapter 13 Create, Query, and Sort an Access Database; Create Forms and Reports 2013 Pearson Education, Inc. Publishing as Prentice Hall 1 Objectives Identify Good

More information

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen.

Intro to Excel. To start a new workbook, click on the Blank workbook icon in the middle of the screen. Excel is a spreadsheet application that allows for the storing, organizing and manipulation of data that is entered into it. Excel has variety of built in tools that allow users to perform both simple

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

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

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Microsoft How to Series

Microsoft How to Series Microsoft How to Series Getting Started with EXCEL 2007 A B C D E F Tabs Introduction to the Excel 2007 Interface The Excel 2007 Interface is comprised of several elements, with four main parts: Office

More information

Microsoft Access 2010 For the End User. 9/12/2011 Archdiocese of Chicago Mike Riley

Microsoft Access 2010 For the End User. 9/12/2011 Archdiocese of Chicago Mike Riley Microsoft Access 2010 For the End User 9/12/2011 Archdiocese of Chicago Mike Riley i VIDEO TUTORIALS AVAILABLE Almost 100,000 video tutorials are available from VTC. The available tutorials include Windows

More information

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database :

The specific steps to build Wooden Crafts database are here: 1. Create New Database. i. After opening Access, click Blank Desktop Database : Highline College - Busn 216: Computer Applications for Business (Fun and Power with Computers) Office 2016 Video #39: Access 2016: Create Database, Import Excel, Create Tables & Forms, Build Relationships

More information

ENTERING DATA & FORMULAS...

ENTERING DATA & FORMULAS... Overview NOTESOVERVIEW... 2 VIEW THE PROJECT... 5 NAVIGATING... 6 TERMS... 6 USING KEYBOARD VS MOUSE... 7 The File Tab... 7 The Quick-Access Toolbar... 8 Ribbon and Commands... 9 Contextual Tabs... 10

More information