Advanced Interfacing with Data Conference 2017

Size: px
Start display at page:

Download "Advanced Interfacing with Data Conference 2017"

Transcription

1 Conference 2017 Session Description: For experienced users of Aeries Query, covers applying advanced filters, hiding columns, and applying other tricks to a query statement. Also will cover pivot tables in Excel and importing and exporting data using Excel with a focus on data evaluation. 1. Exporting query results from Aeries.net to MS Excel 2. Importing query results from MS Excel to MS Access 3. using MS Access Crosstab query Multiple Table queries 4. Using MS Excel to Analyze Data Pivot Tables Pivot Charts Slicers Session Page 1

2 Exporting query results from Aeries.net and saving to a MS Excel file This example will use the following two queries Student Demographic query LIST STU IDN CSE SSD LOC STU.SC LOC.NM STU.GR STU.ID STU.NM STU.SX STU.LF? STU.SP? STU.HL? STU.ETH? STU.RC1? SBAC CST CMA CAPA query LIST STU TST CTL STU.SC STU.ID STU.GR TST.ID TST.TA TST.TD TST.PT CTL.NM TST.SS TST.PL BY STU.ID IF ( TST.ID = SBAC OR TST.ID = CST OR TST.CMA OR TST.ID = CAPA ) AND ( TST.TA = SPRG15 OR TST.TA = SPRG16 ) Run Query in Aeries.net by Clicking on the Excel button. When the query results are ready to be viewed, you will see the dialog box below. Click on the View Report button to open results using MS Excel. When prompted to open the file Click the Open button. After opening MS Excel workbook, Click on the Enable Editing button at the top. (In Yellow) Click on File > Save As > (Choose your file name and desired file location) > and click Save. Session Page 2

3 This MS Excel file was saved as with the following name: Student Demographic Data. Repeat this process for the second Query. The query is listed below. SBAC CST CMA CAPA query LIST STU TST CTL STU.SC STU.ID STU.GR TST.ID TST.TA TST.TD TST.PT CTL.NM TST.SS TST.PL BY STU.ID IF ( TST.ID = SBAC OR TST.ID = CST OR TST.CMA OR TST.ID = CAPA ) AND ( TST.TA = SPRG15 OR TST.TA = SPRG16 ) Save the second query as a MS Excel spreadsheet with the name: SBAC Importing MS Excel data to MS Access Launch MS Access from your computer Create New Database (with desired name and file location) Type File name and choose desired location by clicking on the yellow folder Once you have created a new database in MS Access Click on the External Data tab on the ribbon. Click the Excel icon from the ribbon in the Import & Link group You will be prompted to find your MS Excel file location. Navigate to the file location by clicking the Browse button. Select file and Click on the Open Button. Session Page 3

4 After selecting file click the OK button to begin data import into MS Access. We will import the data as is and not customize the fields or make any format changes. Click the Next button three times to continue to the final step where you are prompted to name your Table. Give the file an intuitive name like Student Demographic Data and Click the Finish button. There is no need to save the import procedures. Click the Close Button Repeat the import process for the second MS Excel File. Import the second MS Excel file to MS Access and name the table SBAC using MS Access Once you have imported both Query results into MS Access you should have two tables in your new database. (See picture below) Session Page 4

5 Select the Create tab on the ribbon and Click on the Query Design icon in the Queries group. A new blank query is created in MS Access and you are prompted to select the table you would like to include in your Query. Add the SBAC table by selecting it from the list of objects in the Tables Tab and Clicking the Add button. After adding the SBAC table Click the Close button to close the dialog box. Your database window will look like this. Session Page 5

6 To begin modifying this query, double click on the Student ID field inside of the SBAC table. This will add the field at the left most position of the query Repeat this step with the PerformLvl field. You will see the second field added to the query. Select the Query Tools Design tab on the ribbon. Then click on the Crosstab icon. The Crosstab button will change the query properties and will enable you to get All Test Scores on one line for each individual student. Note: that there are a few more steps to do before this query is complete. Select the top row in the third column and type in the following text exactly as it appears below. An explanation of the syntax will follow. Header: [Test Admin]&" "&[TESTID]&" "&[Test Title]&" PL" Session Page 6

7 Much like Aeries queries there are spaces between each of the symbols (i.e. &,,, [ ], etc.) Explanation: In a crosstab query MS Access displays all values that belong to a Student ID and displays them in one line. Because the SBAC table in our database contains SBAC, CST, CMA and CAPA results from both & we will use this query to list each type of result by Test Administration in a separate column. Syntax: When writing queries the Syntax is very important just like writing queries in Aeries we need to have spaces between each part. Header: [Test Admin] & " " & [TESTID] & " " & [Test Title] & " PL" In order to make it a little easier to see all the separate parts we ll add some color coding to describe the function of each item. Header: [Test Admin] & " " & [TESTID] & " " & [Test Title] & " PL" These are the separate parts of this query. (What do these symbols mean?) The word Header: is a place holder and will not be visible, but it helps us remember what this field is. Items inside of the green [square brackets] are field names (i.e. [Test Admin], [TESTID], [Test Title]) The red & is used to concatenate (join together) fields, spaces or text The " " (double quotes with a space in between) are used to add a space between two fields The " PL" is used to add a space and PL at the end of the field. This will indicate that the scores are Performance Level scores Next we will make changes to this query to determine where the fields will be listed in the crosstab query. Click in the Crosstab row in the Student ID column and select Row Heading from the drop down list. Then Click in the Crosstab row in the PerofmLvl column select Value from the drop down list, then Click the Total row in the PerformLvl column and select Max from the drop down list. Session Page 7

8 The last item to change is the header row. Click in the Crosstab row in the Header column and select Column Heading from the drop down list. Save your query by selecting File > Save Object as > (giving it the desired name. For this example we will use SBAC Crosstab PL as the query name. Click the OK button to complete the Save As command. To Run the Query - Select the Query Tools Design tab on the ribbon and Click on the Run Command. Now that we created the crosstab query that organizes our SBAC, CST, CMA and CAPA results we can combine them with our student demographic data. Joining Query results to analyze data - Creating a New query that combines results from more than one table. Select the Create tab on the ribbon and click on the Query Design icon in the Queries group. A new blank query is created in MS Access and you are prompted to select the tables or queries you would like to include in your Query. Add the Student Demographic Data table by selecting it from the list of objects in the Tables Tab and Clicking the Add button. Session Page 8

9 After adding the SBAC table Select the Queries Tab and Select the SBAC Crosstab PL Query and Click the Add button. We are only adding two objects to this query so we can close the dialog box. Click the Close button to close the dialog box. The Query window will now look like this. The Student ID fields in both tables need to be joined so that our results are matched to the correct students. (MS Access does this more efficiently than using MS Excel s Vlookup) Using your mouse Click on Student ID in the Student Demographic Data table And (without letting go of the left button) Drag your mouse to Student ID in the SBAC Crosstab PL table. A line linking both of these fields will appear like the one above. We want All student IDs to appear in the query results even if they do not contain any SBAC Results. To do this we need to modify the relationship we just created between both Student ID fields. Double click on the solid line that links both Student ID fields and the following dialog box will appear. Session Page 9

10 Be sure to Click the second radio button. This is the button that says Include ALL records from Student Demographic Data and only those records from SBAC Crosstab PL where the joined fields are equal. You will notice a change in the line. There will be a small arrow pointing from the Student Demographic Data table to the SBAC Crosstab PL table Now that a relationship has been established for these two tables we can add the fields we want to see for analysis. We can add the fields we want to see by double clicking on the field names we want to select. For this example we will double click on the following fields. School name, Grade, Student ID, Student Name, Sex, Description_LF, Description_HL, Description_ETH, Description_RC1, SPRG15 SBAC English Lang Arts Liter PL, SPRG16 SBAC English Lang Arts Liter PL, SPRG15 SBAC Mathematics and SPRG15 SBAC Mathematics. Your query screen will look something like this. Session Page 10

11 Save your query by selecting File > Save Object as > (giving it the desired name. For this example we will use Merged Data as the query name. Click the OK button to complete the Save As command. Then name your query To Run the Query - Select the Query Tools Design tab on the ribbon and Click on the Run Command. The query results will look like this. Using MS Excel to Analyze Data We will copy data directly from MS Access to a new MS Excel spreadsheet. After running the Merged Data query we worked on above, use the Select All option and Copy the query results. column. You can select all by clicking on the upper most cell just left of the first After selecting All from the Merged Data table Copy the data issuing the copy command. The Copy command can be accessed by Selecting the Home tab on the ribbon and Clicking the Copy icon After copying the query results, launch MS Excel from your computer. Session Page 11

12 You can paste the query results directly into the spreadsheet. By Selecting the Home tab on the ribbon and Clicking the Paste icon. After pasting the data your spreadsheet will look like this. Pivot tables are powerful tools for analyzing data. We can create a pivot table by selecting the Insert tab on the ribbon and Clicking the PivotTable button. the following dialog box will appear Ensure that your Table Range is correct and that the New Worksheet radio button is checked. Click the OK button to insert the pivot table to a new worksheet. On the right side of the new worksheets, all fields selected will display. To select the fields for the report, drag and drop them into Row and Column. Drag Fields into the boxes Session Page 12

13 The table being created will show to the left as the fields are added. To enhance the pivot we will insert a chart to graphically display the results. To insert a pivot chart. Select the pivot table first then, Select the PivotTableTools Options tab on the ribbon. Select the PivotChart button under the Tools category and the following dialog box will appear. Select the first icon on the top left under the Column chart group. A pivot chart will then appear next to your pivot table. The chart is linked to the pivot table and will update accordingly when changes are made to the pivot table. Lastly we will be using Slicers to filter our results. To insert slicers, Select the pivot table first then, Select the PivotTableTools Options tab on the ribbon. Session Page 13

14 Click on the Insert Slicer button on the ribbon and the following dialog box will appear. Select the following items and Click OK The screen print below shows what a few of the slicers look like. You can filter your pivot table and pivot chart by Clicking the items on the slicers. You are now ready to analyze your data using the Slicer (Filters) in your Excel Workbook. Session Page 14

Students Multi-Data Profile NEW Version July 6, 2011

Students Multi-Data Profile NEW Version July 6, 2011 Students Multi-Data Profile NEW Version July 6, 2011 On March 18, 2011 a new version was posted containing the NEW Students Multi Data Profile. The program has major modifications and enhancements made.

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Pivot Tables in Excel Contents. Updated 5/19/2016

Pivot Tables in Excel Contents. Updated 5/19/2016 Pivot Tables in Excel 2010 Updated 5/19/2016 Contents Setup a Pivot Table in Excel 2010... 2 General Field List Features... 4 Summing and Counting Together... 6 Grouping Date Data... 7 Grouping Non-Date

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

Excel Advanced

Excel Advanced Excel 2016 - Advanced LINDA MUCHOW Alexandria Technical & Community College 320-762-4539 lindac@alextech.edu Table of Contents Macros... 2 Adding the Developer Tab in Excel 2016... 2 Excel Macro Recorder...

More information

Microsoft Excel Pivot Tables & Pivot Table Charts

Microsoft Excel Pivot Tables & Pivot Table Charts Microsoft Excel 2013 Pivot Tables & Pivot Table Charts A pivot table report allows you to analyze and summarize a million rows of data in Excel 2013 without entering a single formula. Pivot Tables let

More information

2. create the workbook file

2. create the workbook file 2. create the workbook file Excel documents are called workbook files. A workbook can include multiple sheets of information. Excel supports two kinds of sheets for working with data: Worksheets, which

More information

Microsoft Office Excel 2013

Microsoft Office Excel 2013 Microsoft Office Excel 2013 PivotTables and PivotCharts University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2014 KSU Department of University

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

course notes quick reference guide

course notes quick reference guide course notes quick reference guide Microsoft Excel 2010 Welcome to Excel 2010 Excel 2010 is the premier spreadsheet application from Microsoft. Excel 2010 makes it easier to analyze data quickly with new

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

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks...

Contents Part I: Background Information About This Handbook... 2 Excel Terminology Part II: Advanced Excel Tasks... Version 3 Updated November 29, 2007 Contents Contents... 3 Part I: Background Information... 1 About This Handbook... 2 Excel Terminology... 3 Part II:... 4 Advanced Excel Tasks... 4 Export Data from

More information

More Skills 12 Create Web Queries and Clear Hyperlinks

More Skills 12 Create Web Queries and Clear Hyperlinks CHAPTER 9 Excel More Skills 12 Create Web Queries and Clear Hyperlinks Web queries are requests that are sent to web pages to retrieve and display data in Excel workbooks. Web queries work best when retrieving

More information

SPREADSHEET (Excel 2007)

SPREADSHEET (Excel 2007) SPREADSHEET (Excel 2007) 1 U N I T 0 4 BY I F T I K H A R H U S S A I N B A B U R Spreadsheet Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative

More information

Quick Guide for Excel 2015 Data Management November 2015 Training:

Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu Quick Guide for Excel 2015 Data Management November 2015 Training: http://pfw.edu/training Excel 2016 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains

More information

Aeries.net Student Information System Query User Manual April 29, 2009

Aeries.net Student Information System Query User Manual April 29, 2009 Aeries.net Student Information System April 29, 2009 The Aeries.net Query option enables you to create queries from data stored within the database tables. This process generates a query statement and

More information

MICROSOFT Excel 2010 Advanced Self-Study

MICROSOFT Excel 2010 Advanced Self-Study MICROSOFT Excel 2010 Advanced Self-Study COPYRIGHT This manual is copyrighted: S&G Training Limited. This manual may not be copied, photocopied or reproduced in whole or in part without the written permission

More information

State Pre-ID and Load Test Data Conference 2017

State Pre-ID and Load Test Data Conference 2017 Conference 2017 Session Description: Procedures for the creation of Pre-ID files and loading state standard test data (CAASPP, CELDT, etc.) 1. Testing and Assessment 2. Pre-ID Setup Procedures Pre-ID Basics

More information

How to Create Excel Dashboard used in Solutions Conference By Matt Mason

How to Create Excel Dashboard used in Solutions Conference By Matt Mason How to Create Excel Dashboard used in Solutions Conference 2017 By Matt Mason The following is a step by step procedure to create the Dashboard presented by Matt Mason in the Excel Tips and Tricks session

More information

Objective: Class Activities

Objective: Class Activities Objective: A Pivot Table is way to present information in a report format. The idea is that you can click drop down lists and change the data that is being displayed. Students will learn how to group data

More information

Sort, Filter, Pivot Table

Sort, Filter, Pivot Table Sort, Filter, Pivot Table Sort A common database task is to rearrange the information based on a header/field or headers/fields. This is called Sorting or Filtering. Sorting rearranges all of the information

More information

PivotTables & Charts for Health

PivotTables & Charts for Health PivotTables & Charts for Health Data Inputs PivotTables Pivot Charts Global Strategic Information UCSF Global Health Sciences Version Malaria 1.0 1 Table of Contents 1.1. Introduction... 3 1.1.1. Software

More information

Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet

Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet Englische Access 2016-Trainingsskripte für IT Seminare und EDV Schulungen als Word-Dokument zum Ausdrucken und fürs Intranet 9 Data analyses To analyze data, a tabular preparation of the data or a chart

More information

Candy is Dandy Project (Project #12)

Candy is Dandy Project (Project #12) Candy is Dandy Project (Project #12) 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

More information

Creating Automated Dashboard Excel 2013 Contents

Creating Automated Dashboard Excel 2013 Contents Creating Automated Dashboard Excel 2013 Contents Summarize Data Using Pivot Table... 2 Constructing Report Summary... 2 Create a PivotTable from worksheet data... 2 Add fields to a PivotTable... 2 Grouping

More information

How to insert table in Excel?

How to insert table in Excel? What is Table in Excel? Tables allow you to analyze your data in Excel quickly and easily. How to insert table in Excel? To insert a table, execute the following steps. 1. Click any single cell inside

More information

Streamlined Reporting with

Streamlined Reporting with Streamlined Reporting with Presentation by: Ryan Black, M.B.A. Business and Fiscal Officer Office of the Provost Wright State University, Dayton, Ohio Microsoft Excel offers one of the most powerful software

More information

Advanced Excel Charts : Tables : Pivots

Advanced Excel Charts : Tables : Pivots Advanced Excel Charts : Tables : Pivots Protecting Your Tables/Cells Protecting your cells/tables is a good idea if multiple people have access to your computer or if you want others to be able to look

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

Excel 2013 PivotTables and PivotCharts

Excel 2013 PivotTables and PivotCharts Excel 2013 PivotTables and PivotCharts PivotTables... 1 PivotTable Wizard... 1 Creating a PivotTable... 2 Groups... 2 Rows Group... 3 Values Group... 3 Columns Group... 4 Filters Group... 5 Field Settings...

More information

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced

Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts. Microsoft Excel 2013 Enhanced Tutorial 5: Working with Excel Tables, PivotTables, and PivotCharts Microsoft Excel 2013 Enhanced Objectives Explore a structured range of data Freeze rows and columns Plan and create an Excel table Rename

More information

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4

M i c r o s o f t E x c e l A d v a n c e d P a r t 3-4. Microsoft Excel Advanced 3-4 Microsoft Excel 2010 Advanced 3-4 0 Absolute references There may be times when you do not want a cell reference to change when copying or filling cells. You can use an absolute reference to keep a row

More information

Computer Applications Data Processing

Computer Applications Data Processing Lesson 4: Changing the Workbook Appearance Microsoft Excel 2016 IN THIS CHAPTER, YOU WILL LEARN HOW TO Format cells. Define styles. Apply workbook themes and Excel table styles. Make numbers easier to

More information

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon

Excel Intermediate. Click in the name column of our Range of Data. (Do not highlight the column) Click on the Data Tab in the Ribbon Custom Sorting and Subtotaling Excel Intermediate Excel allows us to sort data whether it is alphabetic or numeric. Simply clicking within a column or row of data will begin the process. Click in the name

More information

Light Speed with Excel

Light Speed with Excel Work @ Light Speed with Excel 2018 Excel University, Inc. All Rights Reserved. http://beacon.by/magazine/v4/94012/pdf?type=print 1/64 Table of Contents Cover Table of Contents PivotTable from Many CSV

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

2013 ADVANCED MANUAL

2013 ADVANCED MANUAL 2013 ADVANCED MANUAL C B C H O U S E 2 4 C A N N I N G S T R E E T E D I N B U R G H E H 3 8 E G 0 1 3 1 2 7 2 2 7 9 0 W W W. I T R A I N S C O T L A N D. C O. U K I N F O @ I T R A I N S C O T L A N D.

More information

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

More information

Importing Career Standards Benchmark Scores

Importing Career Standards Benchmark Scores Importing Career Standards Benchmark Scores The Career Standards Benchmark assessments that are reported on the PIMS Student Fact Template for Career Standards Benchmarks can be imported en masse using

More information

Pivot Table Project. Objectives. By the end of this lesson, you will be able to:

Pivot Table Project. Objectives. By the end of this lesson, you will be able to: Pivot Table Project Objectives By the end of this lesson, you will be able to: Set up a Worksheet Enter Labels and Values Use Sum and IF functions Format and align cells Change column width Use AutoFill

More information

COMM 391 Winter 2014 Term 1. Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart

COMM 391 Winter 2014 Term 1. Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart COMM 391 Winter 2014 Term 1 Tutorial 2: Microsoft Excel Using VLookUp and Creating PivotChart The purpose of this tutorial is to enable you to learn how to use the VLookUp function and create a PivotChart

More information

Instructions for Using the Databases

Instructions for Using the Databases Appendix D Instructions for Using the Databases Two sets of databases have been created for you if you choose to use the Documenting Our Work forms. One set is in Access and one set is in Excel. They are

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited ADVANCED MICROSOFT EXCEL 2016 Advanced Microsoft Excel 2016 (EXC2016.3 version 1.0.1) Copyright Information Copyright 2016 Webucator. All rights reserved. The Authors Dave Dunn Dave Dunn joined Webucator

More information

California Assessment of Student Performance and Progress (CAASPP) Online Reporting System (ORS) Score Reports Quick Start Guide

California Assessment of Student Performance and Progress (CAASPP) Online Reporting System (ORS) Score Reports Quick Start Guide 1 Users whose roles permit access to the Online Reporting System (ORS) can access it on http://www.caaspp.org/ either through (1) the [Online Reporting System] link in the [Test Administration] tab or

More information

Microsoft Excel 2007 Creating a XY Scatter Chart

Microsoft Excel 2007 Creating a XY Scatter Chart Microsoft Excel 2007 Creating a XY Scatter Chart Introduction This document will walk you through the process of creating a XY Scatter Chart using Microsoft Excel 2007 and using the available Excel features

More information

Tips & Tricks: MS Excel

Tips & Tricks: MS Excel Tips & Tricks: MS Excel 080501.2319 Table of Contents Navigation and References... 3 Layout... 3 Working with Numbers... 5 Power Features... 7 From ACS to Excel and Back... 8 Teacher Notes: Test examples

More information

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts

New Perspectives on Microsoft Excel Module 5: Working with Excel Tables, PivotTables, and PivotCharts New Perspectives on Microsoft Excel 2016 Module 5: Working with Excel Tables, PivotTables, and PivotCharts Objectives, Part 1 Explore a structured range of data Freeze rows and columns Plan and create

More information

1. Position your mouse over the column line in the column heading so that the white cross becomes a double arrow.

1. Position your mouse over the column line in the column heading so that the white cross becomes a double arrow. Excel 2010 Modifying Columns, Rows, and Cells Introduction Page 1 When you open a new, blank workbook, the cells are set to a default size.you do have the ability to modify cells, and to insert and delete

More information

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32

Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14. Chapter 2 - Working with Data 32 TABLE OF CONTENTS Copyright & License Notes 3 Introduction 13 Chapter 1 - Excel Basics 14 Creating an Excel Workbook 14 Examining the Excel Environment 15 Opening an Existing Workbook 19 Navigating a Worksheet

More information

plus ltd Reports- PIVOT Essentials # Quick Instructions- (ie Click On [CO]) Notes / screenshots Runs your PM data into Excel

plus ltd Reports- PIVOT Essentials # Quick Instructions- (ie Click On [CO]) Notes / screenshots Runs your PM data into Excel # Quick Instructions- (ie Click On [CO]) Notes / screenshots 1. SIMS Reports Run Report +Focus Student find the Report: PM to PIVOT (date) E (May need to CO Enable Content button on a yellow Ribbon bar

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

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

Lesson 1: Exploring Excel Return to the FastCourse Excel 2007 Level 1 book page

Lesson 1: Exploring Excel Return to the FastCourse Excel 2007 Level 1 book page Lesson 1: Exploring Excel 2007 Return to the FastCourse Excel 2007 Level 1 book page Lesson Objectives After studying this lesson, you will be able to: Explain ways Excel can help your productivity Launch

More information

Customizing the Excel 2013 program window. Getting started with Excel 2013

Customizing the Excel 2013 program window. Getting started with Excel 2013 Customizing the Excel 2013 program window 1 2 Getting started with Excel 2013 Working with data and Excel tables Creating workbooks Modifying workbooks Modifying worksheets Merging and unmerging cells

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

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

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2007: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2007: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2007. After an introduction to spreadsheet terminology and Excel's

More information

Intro to Aeries.Net July 12, Terms Used in Aeries.Net. 2. Logon to Aeries.Net

Intro to Aeries.Net July 12, Terms Used in Aeries.Net. 2. Logon to Aeries.Net Intro to Aeries.Net July 12, 2013 1. Terms Used in Aeries.Net 2. Logon to Aeries.Net 3. Aeries.Net Home Page Current Version of Aeries.Net Utilizing the Navigation Tree Accessing Programs From the Navigation

More information

Pivot Tables and Pivot Charts Activities

Pivot Tables and Pivot Charts Activities PMI Online Education Pivot Tables and Pivot Charts Activities Microcomputer Applications Updated 12.16.2011 Table of Contents Objective 1: Create and Modify PivotTable Reports... 3 Organizing Data to Display

More information

Excel 2013 or later contains a range of useful features. Use this quick guide to familiarise yourself with some of these.

Excel 2013 or later contains a range of useful features. Use this quick guide to familiarise yourself with some of these. MS Excel Useful Features Excel 2013 or later contains a range of useful features. Use this quick guide to familiarise yourself with some of these. Choose Startup Options Depending on your preferences,

More information

Create a Relationship to build a Pivot Table

Create a Relationship to build a Pivot Table Create a Relationship to build a Pivot Table In Excel 2013 and 2016/365 you can now create a relationship between tables of data. This is a feature that can be used to pull data from the different tables

More information

RegressItPC installation and test instructions 1

RegressItPC installation and test instructions 1 RegressItPC installation and test instructions 1 1. Create a new folder in which to store your RegressIt files. It is recommended that you create a new folder called RegressIt in the Documents folder,

More information

COURSE CONTENT EXCEL BASIC ONE DAY

COURSE CONTENT EXCEL BASIC ONE DAY COURSE CONTENT EXCEL BASIC ONE DAY SOME OF THE BENEFITS OF USING A SPREADSHEET STARTING EXCEL GETTING YOURSELF ORIENTATED WITH THE EXCEL SCREEN THE OFFICE BUTTON/FILE TAB THE TITLE BAR THE RIBBONS GROUPS

More information

Aeries Analytics - Advanced Analysis of Student Data Conference 2017

Aeries Analytics - Advanced Analysis of Student Data Conference 2017 Conference 2017 Session Description: This session will delve deeper into how to set up and configure advanced Analytics Items and Dashboards. If you've been using Aeries Analytics and want to learn how

More information

Word 2007 Tables Part 2

Word 2007 Tables Part 2 Word 2007 Tables Part 2 In this lesson you will learn to use formulas within tables, change the size and positions of a tables, convert information from table form to text form and vice versa, insert clipart

More information

Working with Data in Microsoft Excel 2010

Working with Data in Microsoft Excel 2010 Working with Data in Microsoft Excel 2010 This document provides instructions for using the sorting and filtering features in Microsoft Excel, as well as working with multiple worksheets in the same workbook

More information

Lesson 1: Exploring Excel Return to the Excel 2007 web page

Lesson 1: Exploring Excel Return to the Excel 2007 web page Lesson 1: Exploring Excel 2007 Return to the Excel 2007 web page Presenting Excel 2007 Excel can be used for a wide variety of tasks: Creating and maintaining detailed budgets Tracking extensive customer

More information

Interfacing with MS Office Conference 2017

Interfacing with MS Office Conference 2017 Conference 2017 Session Description: This session will detail procedures for importing/exporting data between AeriesSIS Web Version/AeriesSIS Client Version and other software packages, such as word processing

More information

How to Create and Use a Pivot Table in Excel

How to Create and Use a Pivot Table in Excel How to Create and Use a Pivot Table in Excel Nikki Casasanto What you need Microsoft Office: Excel 2013 Data Why use a Pivot Table? Microsoft Excel pivot tables offer a way to quickly summarize data. It

More information

North Carolina Community Colleges Business Intelligence Reporting System

North Carolina Community Colleges Business Intelligence Reporting System North Carolina Community Colleges Business Intelligence Reporting System College User Manual Creating Custom Reports Creating Custom Reports The following section will show you how to create custom reports

More information

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College

Excel 101. DJ Wetzel Director of Financial Aid Greenville Technical College Excel 101 DJ Wetzel Director of Financial Aid Greenville Technical College Introduction Spreadsheets are made up of : Columns identified with alphabetic headings Rows - identified with numeric headings.

More information

Contents. Group 2 Excel Handouts 2010

Contents. Group 2 Excel Handouts 2010 Contents Styles... 2 Conditional Formatting... 2 Create a New Rule... 4 Format as Table... 5 Create your own New Table Style... 8 Cell Styles... 9 New Cell Style... 10 Merge Styles... 10 Sparklines...

More information

EXCEL 2013 FDLRS SUNRISE

EXCEL 2013 FDLRS SUNRISE EXCEL 2013 FDLRS SUNRISE Goal: Participants will create a spreadsheet and graph to document student progress. Objectives: Participants will create a spreadsheet which includes basic formulas. Participants

More information

Using Excel to Troubleshoot EMIS Data

Using Excel to Troubleshoot EMIS Data Using Excel to Troubleshoot EMIS Data Overview Basic Excel techniques can be used to analyze EMIS data from Student Information Systems (SISs), from the Data Collector, and on ODE EMIS reports This session

More information

MODULE VI: MORE FUNCTIONS

MODULE VI: MORE FUNCTIONS MODULE VI: MORE FUNCTIONS Copyright 2012, National Seminars Training More Functions Using the VLOOKUP and HLOOKUP Functions Lookup functions look up values in a table and return a result based on those

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

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

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

Microsoft Excel Microsoft Excel

Microsoft Excel Microsoft Excel Excel 101 Microsoft Excel is a spreadsheet program that can be used to organize data, perform calculations, and create charts and graphs. Spreadsheets or graphs created with Microsoft Excel can be imported

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

Microsoft Office Excel 2010: Intermediate (R2) Course Overview. Course Outline

Microsoft Office Excel 2010: Intermediate (R2) Course Overview. Course Outline Microsoft Office Excel 2010: Intermediate (R2) Course Overview This course builds on the skills and concepts taught in Excel 2010: Basic, First Look Edition. Students will learn how to use multiple worksheets

More information

Microsoft Excel Pivot Tables & Pivot Table Charts

Microsoft Excel Pivot Tables & Pivot Table Charts Microsoft Excel 2007 Pivot Tables & Pivot Table Charts A pivot table report allows you to analyze and summarize a million rows of data in Excel 2007 without entering a single formula. Pivot Tables let

More information

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file

UNIT ONE: The Worksheet. Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file UNIT ONE: The Worksheet T o p i c s : Workbook Window Excel Worksheet Fill handle Automatic fill Column widths Opening a file Saving a file I. Start Excel: 1. Click the Start button in the lower-left corner

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 2010 Level 1: The Excel Environment

Excel 2010 Level 1: The Excel Environment Excel 2010 Level 1: The Excel Environment Table of Contents The Excel 2010 Environment... 1 The Excel Window... 1 File Tab... 1 The Quick Access Toolbar... 4 Access the Customize the Quick Access Toolbar

More information

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1

Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Patricia Andrada Quick Guide Excel 2010 Data Management-July 2011 Page 1 Excel 2010 Data Management AutoFill and Custom Lists AutoFill 1. Select the range that contains the initial value(s) of the series

More information

A Brief Word About Your Exam

A Brief Word About Your Exam Exam 1 Studyguide A Brief Word About Your Exam Your exam will be MONDAY, FEBRUARY 20 DURING CLASS TIME. You will have 50 minutes to complete Exam 1. If you arrive late or leave early, you forfeit any time

More information

1 Course Tallies and Lists with Designations

1 Course Tallies and Lists with Designations 1 Course Tallies and Lists with Designations 1.1 Quick Reports The following Quick Reports are available to assist with looking at class composition: Course Requests by Course with Designations: Build

More information

The Basics of PowerPoint

The Basics of PowerPoint MaryBeth Rajczewski The Basics of PowerPoint Microsoft PowerPoint is the premiere presentation software. It enables you to create professional presentations in a short amount of time. Presentations using

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 7 Creating PivotTables and PivotCharts Learning Objectives Create a PivotTable Report Use Slicers and Search Filters Modify a PivotTable

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

Cityworks Analytics By Azteca Systems Inc.

Cityworks Analytics By Azteca Systems Inc. Cityworks Analytics 2014 By Azteca Systems Inc. COPYRIGHT INFORMATION Copyright 2014 by Azteca Systems Inc. All rights reserved. Azteca Systems Inc. 11075 S. State St., Suite 24 Sandy, UT, 84070, U.S.A.

More information

Working with Excel CHAPTER 1

Working with Excel CHAPTER 1 CHAPTER 1 Working with Excel You use Microsoft Excel to create spreadsheets, which are documents that enable you to manipulate numbers and formulas to quickly create powerful mathematical, financial, and

More information

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors

Microsoft Excel. for Finance Majors. Microsoft Excel for Finance Majors Microsoft Excel for Finance Majors 2007 Version: 12/21/2017 Contents Introduction... 3 Working with Tables... 3 Exercise... 10 Pivot Tables... 12 Exercise:... 17 Conditional Formatting... 18 Exercise:...

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

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY

Table of Contents. 1. Creating a Microsoft Excel Workbook...1 EVALUATION COPY Table of Contents Table of Contents 1. Creating a Microsoft Excel Workbook...1 Starting Microsoft Excel...1 Creating a Workbook...2 Saving a Workbook...3 The Status Bar...5 Adding and Deleting Worksheets...6

More information

Starting Excel application

Starting Excel application MICROSOFT EXCEL 1 2 Microsoft Excel: is a special office program used to apply mathematical operations according to reading a cell automatically, just click on it. It is called electronic tables Starting

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Chapter at a glance. Analyze. Filter. Format. Create. Analyze data dynamically by using PivotTables, page 288

Chapter at a glance. Analyze. Filter. Format. Create. Analyze data dynamically by using PivotTables, page 288 Chapter at a glance Analyze Analyze data dynamically by using PivotTables, page 288 Filter Filter, show, and hide PivotTable data, page 298 Format Format PivotTables, page 313 Create Create dynamic charts

More information