STIDistrict Query (Basic)

Size: px
Start display at page:

Download "STIDistrict Query (Basic)"

Transcription

1 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 called Views are displayed in the top left window of the form. These views are designed to reference data in the STIDistrict database and then display the data in a way that is easier for users to understand. To expand the items listed as views, check the All Tables and Views box, located just below the views. This will allow queries to be built for any data in the STIDistrict database. To build a simple query: While in the Design screen, select a view or table from those listed at the top left. Drag and drop into the empty space to the right of the list. Quick Reference Guide STI_ STIDistrict Query (Basic) 1

2 Select the fields to be included in the query by checking the box to the left of each desired field description. As fields are selected, they will appear in the list at the bottom of the screen. Note: Check the first box, labeled with an asterisk (*), to select all fields in the view for output to the query. Sort the data by clicking once in the Sort Type field of the row to sort by. Then choose either Ascending or Descending order. The sort order will be determined by the value displayed in the Sort Order column. Use the Criteria column to select specific records from the database. The syntax for entering selection criteria in this field will be as follows: o = XXX: Use this formula to select only records with the value XXX in the row selected. o > XXX: Use this formula to select records with a numeric field value greater than XXX. o < XXX: Use this formula to select records with a numeric field value less than XXX. Quick Reference Guide STI_ STIDistrict Query (Basic) 2

3 Click on the Execute button in the toolbar at the top of the query screen to run the query. The results screen will appear, listing the found queried data in columns. Note: Click on any column label to re-sort the data by the values in that column. To make changes to the query, click on the Design tab and change the query setup as needed. Click on the Save Query button to save the query for future use. After a query has been saved, it will appear on the Query List menu in STIDistrict. Click on the Create New Query button to create a new query. Click on the Close button to close the program. Quick Reference Guide STI_ STIDistrict Query (Basic) 3

4 Setting Criteria Options Follow the instructions to create a basic query (see above), then perform the following steps: In the grid in the lower half of the screen, locate the field you wish to set criteria against. Follow the row across to the Criteria column. Type the criteria for the query into the cell that intersects the row for the data, and the Criteria column. The Query Builder uses Transact SQL (T-SQL) syntax rules. Examples are listed at the end of this document. Note: Use the Tab key to tab out of the Criteria field. Setting Sorting Options Follow the instructions above to create a basic query and set criteria options, then perform the following steps to sort the data: In the grid in the lower half of the screen, locate the field you wish to sort. Follow the row across to the Sort Type column. Select your sorting preference, sorting as many fields as desired. Select your sort order by adjusting the numbers in the Sort Order column. Quick Reference Guide STI_ STIDistrict Query (Basic) 4

5 Setting Grouping Options To set grouping options: Select the fields to query and click the button. Locate the field you wish to group. Follow the row across to the Group By column. Set your grouping options accordingly. Examples may be found in the section Aggregate Functions on page 10. Note: A very common reason for grouping records is make a count of how many records exist within each group. The example below shows a count of student records within a grouping by Grade and by Gender. Notice that the Alias column has the word Count in it, on the Student Number row. The Alias field MUST be completed for rows that contain counts. This field must also be completed for any of the grouping functions Quick Reference Guide STI_ STIDistrict Query (Basic) 5

6 Linking Views and/or Tables When using more than one view or table within a query, the views and/or tables will need to be linked together. Perform the following steps to do this: Locate the tables you wish to query. Find a common field between the two tables, such as Student_Number. (The STIDistrict Query (Advanced) document has examples of common joins.) Highlight the field on one of the tables. Drag and drop the field from one table to the other. Repeat these steps for any other joins to be made between the two tables. Double-click on the link between the two tables and set Join Properties accordingly. For example, if you are creating a query that uses both the Student_Demographics and Student_Attendance views, and you wish to list all students in the query even if they have no absence records in the database, you would double-click on each of the join lines between the two views and select Include all rows from qrystudent_demographics before clicking Accept. Quick Reference Guide STI_ STIDistrict Query (Basic) 6

7 Saving a Query To save an existing query: Click the button. Enter all desired information and click OK. o o o o o Name: Enter a name to use to identify the query. Category: Select a category from the drop-down list in which to save the query. Description: Enter a good description of what the query does. Locked: Select this option to prevent other users (who belong to other user security groups) from opening and altering the query. Private: Select this option to prevent other users (who belong to other user security groups) from opening the query at all. Opening a Saved Query To open a saved query through the STIDistrict Query Builder: Click the button. Name the query and select the category in which to save the query. (You may create new categories from within STIDistrict Workstation, under Utilities Query List.) Enter a description of the query. This description will be displayed in the header portion of the printed query. The description is therefore a useful way to communicate to the recipient of the query data exactly what sort of information the data represents. Suggested content of this area might include the user who developed the query, the criteria for data within the query, and any other information that may be helpful. Select Locked to deny anyone who does not belong to your user security group the ability to open and modify the query. Select Private to deny anyone who does not belong to your user security group the ability to open the query. Quick Reference Guide STI_ STIDistrict Query (Basic) 7

8 Printing and Exporting Query Results Query results may be printed or exported using the following buttons on the toolbar: Click on the Print Results button to send the data to a printer for a hard copy. In this process, the results are first displayed in a formatted report style. Click on the Print button to print these results, or click on the X (Close) button to close the report. When a report is closed, an option to export the data to a file will be presented. Select the file format in which to save the report, if desired. Note that the saved data will retain the formatting of the report. Click on the Export Results button to export the data to a file. File formats available are ASCII, HTML, and XML. Exporting data in this way saves data in columns, with no formatting. Click on the Microsoft Word button to launch the wizard to merge query results into a Word document. Click on the Microsoft Excel button to launch the wizard to merge query results into an Excel Spreadsheet. Query List To open the Query List in STIDistrict Workstation, select Utilities Query List. Queries that have been created and saved using the Query Tool will be available under this menu option. When a query is selected from the menu, the data is refreshed against the current data in the database. To print the query results, simply select the query from the list and then click the Run Query button. To edit the query, click on the Edit Query button. Quick Reference Guide STI_ STIDistrict Query (Basic) 8

9 Comparison Operators The following list of operators may be used for defining criteria for the data in the query. These operators would be entered into the Criteria column, with criteria as shown in the examples below. Operator Meaning = (Equal) Equal to > (Greater Than) Greater than < (Less Than) Less than >= (Greater Than or Equal To) Greater than or equal to <= (Less Than or Equal To) Less than or equal to <> (Not Equal To) Not equal to!> Not Greater Than (This is equivalent to <=)!< Not Less Than (This is equivalent to =>)!= Not Equal To (This is equivalent to =) Between BETWEEN x AND y, Inclusive selection between the supplied criteria. Comparison Operator Examples If you are trying to locate records for all students who ride bus #45, you would add the BUS_1 field to the grid and in the criteria column you would enter: =45 For students who ride on buses #45 - #50, you would add the BUS_1 field to the grid and in the criteria column for the BUS_1, you would enter: Between 45 and 50 The result of a comparison operator has the Boolean data type, which has three values: True, False and Unknown. Expressions with Boolean data types are used in the WHERE clause to filter the rows that qualify for the search conditions. Quick Reference Guide STI_ STIDistrict Query (Basic) 9

10 Logical Operators Logical operators test for the truth of some condition. Logical operators, like comparison operators, return a Boolean data type with a value of True or False. Operator IN LIKE NOT Meaning IN allows you to create a list of criteria (for example you would enter IN (15, 46, 99) if you were trying to find students on buses 15,46,99. LIKE is used for pattern matching. Normally it is used with the % wildcard. To use LIKE on the LNAME field you would enter LIKE MILL%, the result would return any records where the Last Name started with MILL (MILL,MILLS,MILLER) NOT Reverses the value of any other Boolean operator. Using the LIKE example above NOT LIKE MILL%, the result would return any records where the LastName DOES NOT START with MILL. Aggregate Functions Aggregate functions will be available in Daisi workstation 4.08 and higher. Aggregate functions allow you the ability to get totals of like records. Operator GROUP BY SUM MIN MAX COUNT AVG MIN DISTINCT MAX DISTINCT COUNT DISTINCT Meaning Assigns fields that must be the same to do the aggregate function. This is known as the group Creates a total within the group Finds the lowest value in the aggregate group Finds the highest value in the aggregate group Count the total number in the group Averages the field within the group The lowest of unique input values The highest of unique input values The number of unique input values Quick Reference Guide STI_ STIDistrict Query (Basic) 10

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

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

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

More information

Chapter 4. Microsoft Excel

Chapter 4. Microsoft Excel Chapter 4 Microsoft Excel Topic Introduction Spreadsheet Basic Screen Layout Modifying a Worksheet Formatting Cells Formulas and Functions Sorting and Filling Borders and Shading Charts Introduction A

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

CSC Web Programming. Introduction to SQL

CSC Web Programming. Introduction to SQL CSC 242 - Web Programming Introduction to SQL SQL Statements Data Definition Language CREATE ALTER DROP Data Manipulation Language INSERT UPDATE DELETE Data Query Language SELECT SQL statements end with

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 Office Illustrated. Using Tables

Microsoft Office Illustrated. Using Tables Microsoft Office 2007 - Illustrated Using Tables Objectives Plan a Table Create a Table Add Table Data Find and Replace Table Data Delete Table Data 2 Objectives Sort Table Data Use Formulas in a Table

More information

Creating Mailing Labels (2010)

Creating Mailing Labels (2010) Creating Mailing Labels (2010) The procedure through to printing is a two-stage process. Firstly the client list for the mailing labels is created in Query Builder and then the information is merged within

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Copying, Pasting and Renaming Reports... 4 Creating and linking a report... 6 Auto e-mailing reports...

More information

Unit 3 Fill Series, Functions, Sorting

Unit 3 Fill Series, Functions, Sorting Unit 3 Fill Series, Functions, Sorting Fill enter repetitive values or formulas in an indicated direction Using the Fill command is much faster than using copy and paste you can do entire operation in

More information

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Function built-in formula that performs simple or complex calculations automatically names a function instead of using operators (+, -, *,

More information

Learn about the Display options Complete Review Questions and Activities Complete Training Survey

Learn about the Display options Complete Review Questions and Activities Complete Training Survey Intended Audience: Staff members who will be using the AdHoc reporting tools to query the Campus database. Description: To learn filter and report design capabilities available in Campus. Time: 3 hours

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

MAS 90/200 Intelligence Tips and Tricks Booklet Vol. 1

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

More information

My Query Builder Function

My Query Builder Function My Query Builder Function The My Query Builder function is used to build custom SQL queries for reporting information out of the TEAMS system. Query results can be exported to a comma-separated value file,

More information

QUERY USER MANUAL Chapter 7

QUERY USER MANUAL Chapter 7 QUERY USER MANUAL Chapter 7 The Spectrum System PeopleSoft Financials Version 7.5 1. INTRODUCTION... 3 1.1. QUERY TOOL... 3 2. OPENING THE QUERY TOOL... 4 3. THE QUERY TOOL PANEL... 5 3.1. COMPONENT VIEW

More information

Designing Adhoc Reports

Designing Adhoc Reports Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2010 Intellicus Technologies This document and its content

More information

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

Management Reports Centre. User Guide. Emmanuel Amekuedi

Management Reports Centre. User Guide. Emmanuel Amekuedi Management Reports Centre User Guide Emmanuel Amekuedi Table of Contents Introduction... 3 Overview... 3 Key features... 4 Authentication methods... 4 System requirements... 5 Deployment options... 5 Getting

More information

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL)

Database Systems: Design, Implementation, and Management Tenth Edition. Chapter 7 Introduction to Structured Query Language (SQL) Database Systems: Design, Implementation, and Management Tenth Edition Chapter 7 Introduction to Structured Query Language (SQL) Objectives In this chapter, students will learn: The basic commands and

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

Pivot Tables, Lookup Tables and Scenarios

Pivot Tables, Lookup Tables and Scenarios Introduction Format and manipulate data using pivot tables. Using a grading sheet as and example you will be shown how to set up and use lookup tables and scenarios. Contents Introduction Contents Pivot

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

Astra Scheduling Grids

Astra Scheduling Grids Astra Scheduling Grids To access the grids, click on the Scheduling Grids option from the Calendars tab. A default grid will be displayed as defined by the calendar permission within your role. Choosing

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

Frequency tables Create a new Frequency Table

Frequency tables Create a new Frequency Table Frequency tables Create a new Frequency Table Contents FREQUENCY TABLES CREATE A NEW FREQUENCY TABLE... 1 Results Table... 2 Calculate Descriptive Statistics for Frequency Tables... 6 Transfer Results

More information

Unit Assessment Guide

Unit Assessment Guide Unit Assessment Guide Unit Details Unit code Unit name Unit purpose/application ICTWEB425 Apply structured query language to extract and manipulate data This unit describes the skills and knowledge required

More information

REPORT WRITER MANUAL (Version 10)

REPORT WRITER MANUAL (Version 10) REPORT WRITER MANUAL (Version 10) 2 Report Writer - Navigation You may access Report Writer by choosing view from your toolbar and selecting Report Writer or by choosing the Report Writer option when you

More information

Access Intermediate

Access Intermediate Access 2010 - Intermediate 103-134 Advanced Queries Quick Links Overview Pages AC116 AC117 Selecting Fields Pages AC118 AC119 AC122 Sorting Results Pages AC125 AC126 Specifying Criteria Pages AC132 AC134

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

Business Insight Authoring

Business Insight Authoring Business Insight Authoring Getting Started Guide ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: August 2016 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

Welcome to Cole On-line Help system!

Welcome to Cole On-line Help system! Welcome to Cole On-line Help system! Cole Online is an Internet based information directory that allows fast and efficient access to demographic information about residences and businesses. You can search

More information

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management

MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management MASSACHUSETTS INSTITUTE OF TECHNOLOGY Sloan School of Management 15.561 IT Essentials Spring 2005 An Introduction to Microsoft Access * Lecture Script 1. Introduction Open Database: Northwind.mdb Select

More information

Excel Tips for Compensation Practitioners Weeks Pivot Tables

Excel Tips for Compensation Practitioners Weeks Pivot Tables Excel Tips for Compensation Practitioners Weeks 23-28 Pivot Tables Week 23 Creating a Pivot Table Pivot tables are one of the most amazing and powerful tools in Excel, but many users do not know how to

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

Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University

Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University ReportNet Query Studio Princeton University Exercise Workbook Training Developed by Elisabetta Zodeiko, Princeton University Cognos, Impromptu, PowerPlay, and ReportNet are registered trademarks of Cognos

More information

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells

LIBRE OFFICE CALC What is Calc? Spreadsheets, sheets, and cells spreadsheets Spreadsheets Cells 1 LIBRE OFFICE CALC What is Calc? Calc is the spreadsheet component of LibreOffice. You can enter data (usually numerical) in a spreadsheet and then manipulate this data to produce certain results. Alternatively,

More information

Microsoft Access 2007 Module 2

Microsoft Access 2007 Module 2 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

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

More information

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature

University of North Dakota PeopleSoft Finance Tip Sheets. Utilizing the Query Download Feature There is a custom feature available in Query Viewer that allows files to be created from queries and copied to a user s PC. This feature doesn t have the same size limitations as running a query to HTML

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

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

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

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

Microsoft Excel 2010

Microsoft Excel 2010 Microsoft Excel 2010 omar 2013-2014 First Semester 1. Exploring and Setting Up Your Excel Environment Microsoft Excel 2010 2013-2014 The Ribbon contains multiple tabs, each with several groups of commands.

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

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel.

Open Excel by following the directions listed below: Click on Start, select Programs, and the click on Microsoft Excel. Candy is Dandy Grading Rubric You have been hired to conduct some market research about M&M's. First, you had your team purchase 4 large bags and the results are given for the contents of those bags. You

More information

Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system.

Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system. TRAINEE WORKBOOK Atlas 5.0 for Microsoft Dynamics AX Advanced reporting system. Table of Contents 1 Introduction... 4 1.1 Welcome... 4 1.2 About this course... 4 1.2.1 Course description... 4 1.2.2 Audience...

More information

User Manual Mail Merge

User Manual Mail Merge User Manual Mail Merge Version: 1.0 Mail Merge Date: 27-08-2013 How to print letters using Mail Merge You can use Mail Merge to create a series of documents, such as a standard letter that you want to

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

SOFTWARE SKILLS BUILDERS

SOFTWARE SKILLS BUILDERS USING ACCESS TO CREATE A SCIENCE DATABASE A database allows you to enter, store, retrieve, and manipulate data efficiently. You will first design your database and enter information into a table called

More information

Introduction to PeopleSoft Query. The University of British Columbia

Introduction to PeopleSoft Query. The University of British Columbia Introduction to PeopleSoft Query The University of British Columbia December 6, 1999 PeopleSoft Query Table of Contents Table of Contents TABLE OF CONTENTS... I CHAPTER 1... 1 INTRODUCTION TO PEOPLESOFT

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

Relational Database Management Systems for Epidemiologists: SQL Part I

Relational Database Management Systems for Epidemiologists: SQL Part I Relational Database Management Systems for Epidemiologists: SQL Part I Outline SQL Basics Retrieving Data from a Table Operators and Functions What is SQL? SQL is the standard programming language to create,

More information

Dashboard 8.0. User Guide

Dashboard 8.0. User Guide Dashboard 8.0 User Guide Table of Contents Dashboard User Reference Guide Table of Contents...2 Basic Navigation...3 Content Section...3 Filter Frame...4 Table Types...5 The Drilling Process...6 The Metric

More information

Basics of Spreadsheet

Basics of Spreadsheet 106 :: Data Entry Operations 6 Basics of Spreadsheet 6.1 INTRODUCTION A spreadsheet is a large sheet having data and information arranged in rows and columns. As you know, Excel is one of the most widely

More information

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS:

USING ODBC COMPLIANT SOFTWARE MINTRAC PLUS CONTENTS: CONTENTS: Summary... 2 Microsoft Excel... 2 Creating a New Spreadsheet With ODBC Data... 2 Editing a Query in Microsoft Excel... 9 Quattro Pro... 12 Creating a New Spreadsheet with ODBC Data... 13 Editing

More information

Creating a Multi-Dimensional Report

Creating a Multi-Dimensional Report Creating a Multi-Dimensional Report Chapter 3 A multi-dimensional report counts and analyzes data across multiple dimensions and displays counts, averages and other statistics in a tabular format. To create

More information

Service Line Export and Pivot Table Report (Windows Excel 2010)

Service Line Export and Pivot Table Report (Windows Excel 2010) Service Line Export and Pivot Table Report (Windows Excel 2010) In this tutorial, we will take the Service Lines of the Active Students only and only the most recent record to take a snapshot look at approximate

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

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007

How to Create Custom Name Badge Inserts with a Mail Merge in Microsoft Word 2007 Many people know that you can use the Mail Merge feature in Microsoft Word 2007 to easily create mailing labels, but did you know you can use it to quickly create custom name badge inserts? Here, you will

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

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

Exam 2 Study Guide. Denny Hood Computer Science 101

Exam 2 Study Guide. Denny Hood Computer Science 101 Exam 2 Study Guide Denny Hood denny.hood@mail.wvu.edu Computer Science 101 A Brief Word About Your Exam Your exam will be MONDAY, APRIL 10. You will have 50 minutes to complete Exam 2. 1. If you arrive

More information

Kaseya 2. User Guide. Version 7.0. English

Kaseya 2. User Guide. Version 7.0. English Kaseya 2 Custom Reports User Guide Version 7.0 English September 3, 2014 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS

More information

7. Apply a Range of Table Features

7. Apply a Range of Table Features Word Processing 5N1358 7. Apply a Range of Table Features Contents Apply a Range of Table Features Including: 1. Creating Tables... 1 2. Resizing... 4 3. Merging Cells... 5 4. Inserting or Deleting columns

More information

Excel Formulas & Functions I CS101

Excel Formulas & Functions I CS101 Excel Formulas & Functions I CS101 Topics Covered Use statistical functions Use cell references Use AutoFill Write formulas Use the RANK.EQ function Calculation in Excel Click the cell where you want to

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

PCB List Panel. Contents

PCB List Panel. Contents PCB List Panel Contents Function Content and Use Defining Panel Display Scope Working with Filtered Objects Displaying Workspace Selection Displaying Filtering Results Using the Panel to Select Objects

More information

Business Warehouse reports Running and manipulating reports. Newcastle University Andy Proctor 9 th March 2017

Business Warehouse reports Running and manipulating reports. Newcastle University Andy Proctor 9 th March 2017 Business Warehouse reports Running and manipulating reports Newcastle University Andy Proctor 9 th March 2017 Table of Contents Running a business warehouse report... 2 Adding a characteristic... 4 Drag

More information

Ad Hoc Reporting Manual

Ad Hoc Reporting Manual Ad Hoc Reporting Manual Version 2011M.1038 This manual created by Custom Computer Specialists, Inc. 70 Suffolk Court Hauppauge, NY 11788 www.customonline.com Copyright 2008 Custom Computer Specialists,

More information

Intermediate Excel 2016

Intermediate Excel 2016 Intermediate Excel 2016 Relative & Absolute Referencing Relative Referencing When you copy a formula to another cell, Excel automatically adjusts the cell reference to refer to different cells relative

More information

Astra Scheduling Grids

Astra Scheduling Grids Astra Scheduling Grids To access the grids, click on the Scheduling Grids option from the Calendars tab. A default grid will be displayed as defined by the calendar permission within your role. Choosing

More information

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Introduction to MS Excel Management Information Systems

Introduction to MS Excel Management Information Systems Introduction to MS Excel 2007 Management Information Systems 1 Overview What is MS Excel? Functions. Sorting Data. Filtering Data. Data Form. Data Validation. Create charts in Excel. Formatting Cells.

More information

COMP 244 DATABASE CONCEPTS & APPLICATIONS

COMP 244 DATABASE CONCEPTS & APPLICATIONS COMP 244 DATABASE CONCEPTS & APPLICATIONS Querying Relational Data 1 Querying Relational Data A query is a question about the data and the answer is a new relation containing the result. SQL is the most

More information

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR

Data Should Not be a Four Letter Word Microsoft Excel QUICK TOUR Toolbar Tour AutoSum + more functions Chart Wizard Currency, Percent, Comma Style Increase-Decrease Decimal Name Box Chart Wizard QUICK TOUR Name Box AutoSum Numeric Style Chart Wizard Formula Bar Active

More information

Quick Start Guide. Version R94. English

Quick Start Guide. Version R94. English Custom Reports Quick Start Guide Version R94 English December 12, 2016 Copyright Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept

More information

Advanced Excel for EMIS Coordinators

Advanced Excel for EMIS Coordinators Advanced Excel for EMIS Coordinators Helen Mills helenmills@metasolutions.net 2015 Metropolitan Educational Technology Association Outline Macros Conditional Formatting Text to Columns Pivot Tables V-Lookup

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

SQL functions fit into two broad categories: Data definition language Data manipulation language

SQL functions fit into two broad categories: Data definition language Data manipulation language Database Principles: Fundamentals of Design, Implementation, and Management Tenth Edition Chapter 7 Beginning Structured Query Language (SQL) MDM NUR RAZIA BINTI MOHD SURADI 019-3932846 razia@unisel.edu.my

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

Using Excel for a Gradebook: Advanced Gradebook Formulas

Using Excel for a Gradebook: Advanced Gradebook Formulas Using Excel for a Gradebook: Advanced Gradebook Formulas Objective 1: Review basic formula concepts. Review Basic Formula Concepts Entering a formula by hand: Always start with an equal sign, and click

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

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

THE EXCEL ENVIRONMENT... 1 EDITING...

THE EXCEL ENVIRONMENT... 1 EDITING... Excel Essentials TABLE OF CONTENTS THE EXCEL ENVIRONMENT... 1 EDITING... 1 INSERTING A COLUMN... 1 DELETING A COLUMN... 1 INSERTING A ROW... DELETING A ROW... MOUSE POINTER SHAPES... USING AUTO-FILL...

More information

If you have questions or need assistance in any way, please contact MicroEdge Technical Support.

If you have questions or need assistance in any way, please contact MicroEdge Technical Support. AngelPoints Advanced Reporting Users Guide 2017 Advanced Reporting leverages existing technologies current employed in GIFTS Online to provide AngelPoints users with a new and more robust environment to

More information

1. Managing Information in Table

1. Managing Information in Table 1. Managing Information in Table Spreadsheets are great for making lists (such as phone lists, client lists). The researchers discovered that not only was list management the number one spreadsheet activity,

More information

Creating and Running a Report

Creating and Running a Report Creating and Running a Report Reports are similar to queries in that they retrieve data from one or more tables and display the records. Unlike queries, however, reports add formatting to the output including

More information

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian

Microsoft Excel. An Introduction to. Lecture No. 2. Date: March Instructor: Mr. Mustafa Babagil. Prepared By: Nima Hashemian An Introduction to Microsoft Excel Lecture No. 2 Date: March 16. 2007 Instructor: Mr. Mustafa Babagil Prepared By: Nima Hashemian 2006 An Introduction to Excel Mathematics Department Eastern Mediterranean

More information

Using Numbers, Formulas, and Functions

Using Numbers, Formulas, and Functions UNIT FOUR: Using Numbers, Formulas, and Functions T o p i c s : Using the Sort function Create a one-input data table Hide columns Resize columns Calculate with formulas Explore functions I. Using the

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

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

Reference Services Division Presents. Excel Introductory Course

Reference Services Division Presents. Excel Introductory Course Reference Services Division Presents Excel 2007 Introductory Course OBJECTIVES: Navigate Comfortably in the Excel Environment Create a basic spreadsheet Learn how to format the cells and text Apply a simple

More information

EDIT202 Spreadsheet Lab Prep Sheet

EDIT202 Spreadsheet Lab Prep Sheet EDIT202 Spreadsheet Lab Prep Sheet While it is clear to see how a spreadsheet may be used in a classroom to aid a teacher in marking (as your lab will clearly indicate), it should be noted that spreadsheets

More information

Microsoft Office Excel 2007

Microsoft Office Excel 2007 Microsoft Office Excel 2007 Data Processing in Spreadsheets 1/28/2009 Microsoft Excel 1 Use Excel s functions! A function is a predefined (built-in) formula for commonly used calculations. Each Excel function

More information

How to stay connected. Stay connected with DIIT

How to stay connected. Stay connected with DIIT Google Level 1 1 How to stay connected Stay connected with DIIT Google Sheets 3 Create a Google Sheet For this session open: SAMPLE DATA SHEET Yes, Make a Copy From Your Drive: New>>Google Sheets Or 4

More information