Using the SDT in Access ARSI Training

Size: px
Start display at page:

Download "Using the SDT in Access ARSI Training"

Transcription

1 Using the SDT in Access ARSI Training Andrea Peach, Georgetown College During our training, we used Access to create queries for accessing the Student Data Tool. This tutorial will remind you how we: 1. opened the database using Access 2. created a query using a wizard 3. create a report based on the query 4. copied the data in the query and pasted it into Excel 5. output the report into a Word document Open the database using Access On the CD, you were provided with two Access files. One of them has your district or school name in the file name. This is the file you will be using. To use this file, do the following: 1. Right-click on the file on your CD 2. Choose Copy 3. On your PC, decide where you want to put the database. For example, you might want to put the file on your desktop or somewhere under the My Documents folder. Using My Computer, go to where you want to put the file. 4. Right-click and choose Paste. 5. You should see the icon for the database file. Right-click on the icon and choose Properties 6. Make sure the Read-Only item is NOT CHECKED. Click OK. 7. Now, double-click on the icon. This should launch Access and the database. Create a query using a wizard When you open the database, you will see one table (DATA). You will also see some choices on the left side of the screen. For this activity, you should choose the Query option. Remember, a query is a question! I know you have a lot of questions about this data. So, the first step is to jot down some of the questions that you have. For example, you might ask the question How many 4 th grade girls scored proficient in a specific area Write your questions on the lines below:

2 Now that you have some questions, you need to decide if the answer to the question resides in your data. To determine this, you should be somewhat familiar with the different fields that are contained in the data. There is a file on your cd that contains a list of all of the available data fields. You can refer to this list to determine which fields that you will include in your query. Looking at this list, see if you can rewrite your questions from above using the proper field name. Now, let s create our query in Access. We will use the Query Wizard to help us. Remember, a wizard asks questions that help you create your query. 1. Click the Query Wizard link. 2. Click on the fields that you want to examine. Use your rewritten questions above to determine which fields you will need to choose. 3. Click Finish. 4. You will be taken to a list of all of the data retrieved from the query.

3 So, what has the query done for us so far Basically, you have created a subset of the data. This might be all you need to do. Typically, however, you will want to further reduce the list or to count similar records. To do this, you will need to go into the Design mode. If you will look at the top-left of the toolbar, next to the disk (save) tool, you will see the Design View tool (I have circled the tool in the picture below). Remember where this is you will use it to go back and forth from designing your query and viewing the data. When you click on the design view tool, you will see a screen that looks something like this.. More information about setting criteria. Let s say you wanted to find all students that were born in July. You would type 07* in the criteria field. The * is called a wildcard and it stands for any letter or number. Let s say I wanted to see only students that were born in July, You would type 07*92. Any birth date that began with 07 and ended in 92 would be accessed. What if I wanted to find the students who were born in either July or August.

4 You would type 07*92 in the first criteria line and 08*92 in the second line. Counts, Averages, etc. Let s consider the following query. I wanted to see what the average science percentage score was for boys in the 4 th grade. So, I followed the following steps: 1. Using the query wizard, I chose the grade and PCT_SS fields and clicked on the Finish button. This gave me a list of all science scores. 2. I clicked on the design view button (upper left-corner, next to the save tool). 3. Since I want to do an average, I need to click on the View menu and choose Totals. You will now see a new line called Total on the query screen. 4. When you click on the box under the field that you want to average, you will have the option to choose Avg. 5. Run the query (click on the tool on the top left beside the save tool). More notes about calculations: If you have data that is not numerical (for example, the TOT- scores are represented by letters P, NH, etc.), you can only COUNT. If you want to do more than one calculation, you can add the same field in multiple columns on the query. In my example above, you could click in the box next to PCT_SC and choose PCT_SC again. Then you could choose StDev to view the standard deviation. You could also choose PCT_MA to view the averages of both science and math. The main thing to consider when using calculations is to KEEP IT SIMPLE. You have to be careful when you choose the field to GROUP BY. For example, let s say I wanted to average the scores of the 4 th grade students that were born between July and October of Consider the query below..

5 Looks like it would work. But, when I ran the query, I got the following result.. DATA Query1 GRADE BDATE AvgOfPCT_SC etc Why Think about the query. It was grouping by the birthdate. So, every unique birthdate was listed. But, this isn t really what we want. How do we just get the average of all of these records The easiest way is to create a new query that uses this query as the data. 1. Save this query (for example, call it young students) and exit the query. 2. Create a new query using the query wizard. 3. Instead of choosing the DATA table, choose the young students QUERY.

6 4. Think about this query. You already know the grade of these students (4) and you already selected out the birthdates. So, you only need the AvgOfPCT_SC field. When you hit the Next button, you will get a new option (because you are dealing now with a number instead of text data). 5. Choose Summary and then click on the Summary Options

7 6. You can click on all or only a few of the choices. Click OK and, on the next screen, click Finish. 7. Wow! You now have your summary data with calculations! Create a report based on the query If you want to print a report, you can choose to create your report (using a wizard) based on the results from a query. For example, let s say I wanted to print a list of all students that were Proficient in science. 1. I could create a query that listed the students first and last names and their grade. 2. I could save this query (maybe I would name it All Proficient Students ) 3. I could then go to the Report tab and choose to create a report using a wizard. 4. On the first screen, instead of choosing the DATA table, I would choose the All Proficient Students query. 5. I would choose all of the fields and take the defaults (you can choose to sort your results if you wish). 6. This will give you a formatted list of all of your proficient students! Copy the data in the query and paste it into Excel You can also select all of the data in the result of a query and paste the data into Excel. Then, you can create formulas or pivot tables. Let s try it. I ll create a query that lists the 4 th grade students, with their gender, ethnic, lunch status, and TOTSC score proficiency. DATA Query3 GRADE SEX ETHNIC LUNCH TOTSC 04 F W 1 NH 04 M W 3 P 04 M W 2 P 04 F W 1 AH 04 M W 3 AM 04 F W 3 P 04 F W 3 P 04 M W 3 P 04 M W 1 NH 04 M W 1 NH 04 M W 2 D etc. 1. Now, let s copy this data (Edit/Select All Records) and Paste it into Excel. Save the Excel worksheet. Creating the Pivot Table 1. Select the data in Excel. 2. Click on the Data menu and choose Pivot Table and Pivot Chart Report 3. Choose Microsoft Excel List or Database (default) and choose Pivot Table (default). Click Next.

8 4. Since you pre-selected the data, you can hit Next here as well. 5. Choose New Worksheet and hit Finish. 6. You will be taken to your Pivot Table worksheet. It will look like this 7. Now, think about what you want to examine. For example, suppose I want to see the TOTSC by ethnic. And, let s say I want the TOTSC scores to appear going down the first column and the ethic codes to appear across the top. 8. I would click on on TOTSC and DRAG to the place on the screen that says Drop Row Fields Here. 9. Similarly, I would click on ETHNIC and DRAG to the place where it says DROP COLUMN FIELDS HERE. 10. But, when you do this, you won t see the counts. 11. So, you have to click on the ETHNIC item again and drag it over to the place where it says DROP DATA ITEMS HERE.

9 My best advise on using pivot tables is to play around with them and practice. They are very powerful tools, but they can be confusing at first glance. Conclusion Try going through this tutorial when you get back to your school. Don t be afraid to try new things with your queries you may discover some very interesting trends about your students. If you have questions, feel free to contact me at (work) or (home) or through at apeach0@georgetowncollege.edu. Good luck!!! Andrea Peach Assistant Professor of Education Georgetown College

Excel Tool: Plots of Data Sets

Excel Tool: Plots of Data Sets Excel Tool: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

Excel Manual X Axis Label Below Chart 2010 >>>CLICK HERE<<<

Excel Manual X Axis Label Below Chart 2010 >>>CLICK HERE<<< Excel Manual X Axis Label Below Chart 2010 When the X-axis is crowded with labels one way to solve the problem is to split the labels for to use two rows of labels enter the two rows of X-axis labels as

More information

Excel Lab 2: Plots of Data Sets

Excel Lab 2: Plots of Data Sets Excel Lab 2: Plots of Data Sets Excel makes it very easy for the scientist to visualize a data set. In this assignment, we learn how to produce various plots of data sets. Open a new Excel workbook, and

More information

UNIT TWO: Data for Simple Calculations. Enter and format a title Modify font style and size Enter column headings Move data Edit data

UNIT TWO: Data for Simple Calculations. Enter and format a title Modify font style and size Enter column headings Move data Edit data UNIT TWO: Data for Simple Calculations T o p i c s : Enter and format a title Modify font style and size Enter column headings Move data Edit data I. Entering and Formatting Titles: The information used

More information

CHM 152 Lab 1: Plotting with Excel updated: May 2011

CHM 152 Lab 1: Plotting with Excel updated: May 2011 CHM 152 Lab 1: Plotting with Excel updated: May 2011 Introduction In this course, many of our labs will involve plotting data. While many students are nerds already quite proficient at using Excel to plot

More information

COMPUTING CURRICULUM TOOLKIT

COMPUTING CURRICULUM TOOLKIT COMPUTING CURRICULUM TOOLKIT Pong Tutorial Beginners Guide to Fusion 2.5 Learn the basics of Logic and Loops Use Graphics Library to add existing Objects to a game Add Scores and Lives to a game Use Collisions

More information

This tutorial will lead you through step-by-step to make the plot below using Excel.

This tutorial will lead you through step-by-step to make the plot below using Excel. GES 131 Making Plots with Excel 1 / 6 This tutorial will lead you through step-by-step to make the plot below using Excel. Number of Non-Student Tickets vs. Student Tickets Y, Number of Non-Student Tickets

More information

GIS Module GMS 7.0 TUTORIALS. 1 Introduction. 1.1 Contents

GIS Module GMS 7.0 TUTORIALS. 1 Introduction. 1.1 Contents GMS 7.0 TUTORIALS 1 Introduction The GIS module can be used to display data from a GIS database directly in GMS without having to convert that data to GMS data types. Native GMS data such as grids and

More information

Tableau. by Molly Monsey and Paul Sochan

Tableau. by Molly Monsey and Paul Sochan Tableau Tableau by Molly Monsey and Paul Sochan Tableau For Dummies Published by: John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030-5774, www.wiley.com Copyright 2016 by John Wiley & Sons,

More information

v. 8.0 GMS 8.0 Tutorial GIS Module Shapefile import, display, and conversion Prerequisite Tutorials None Time minutes

v. 8.0 GMS 8.0 Tutorial GIS Module Shapefile import, display, and conversion Prerequisite Tutorials None Time minutes v. 8.0 GMS 8.0 Tutorial Shapefile import, display, and conversion Objectives Learn how to import and display shapefiles with and without ArcObjects. Convert the shapefiles to GMS feature objects. Prerequisite

More information

Stratigraphy Modeling Boreholes and Cross. Become familiar with boreholes and borehole cross sections in GMS

Stratigraphy Modeling Boreholes and Cross. Become familiar with boreholes and borehole cross sections in GMS v. 10.3 GMS 10.3 Tutorial Stratigraphy Modeling Boreholes and Cross Sections Become familiar with boreholes and borehole cross sections in GMS Objectives Learn how to import borehole data, construct a

More information

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1

10.2. Scanning Document Camera Scoring. Page 1 of 5. How do I score answer sheets using a document camera? STEP 1 Step by Step How do I score answer sheets using a document camera? STEP 1 Click on the Assessment icon in the top navigation bar. STEP 2 To locate your assessment in an assessment list, first select the

More information

SAVING, LOADING AND REUSING LAYER STYLES

SAVING, LOADING AND REUSING LAYER STYLES SAVING, LOADING AND REUSING LAYER STYLES In this Photoshop tutorial, we re going to learn how to save, load and reuse layer styles! Layer styles are a great way to create fun and interesting photo effects

More information

Stratigraphy Modeling Boreholes and Cross Sections

Stratigraphy Modeling Boreholes and Cross Sections GMS TUTORIALS Stratigraphy Modeling Boreholes and Cross Sections The Borehole module of GMS can be used to visualize boreholes created from drilling logs. Also three-dimensional cross sections between

More information

Objectives Learn how to import and display shapefiles in GMS. Learn how to convert the shapefiles to GMS feature objects. Required Components

Objectives Learn how to import and display shapefiles in GMS. Learn how to convert the shapefiles to GMS feature objects. Required Components v. 10.3 GMS 10.3 Tutorial Importing, displaying, and converting shapefiles Objectives Learn how to import and display shapefiles in GMS. Learn how to convert the shapefiles to GMS feature objects. Prerequisite

More information

Welcome to Weebly. Setting up Your Website. Write your username here:

Welcome to Weebly. Setting up Your Website. Write your username here: Welcome to Weebly Setting up Your Website Write your username here: You will need to remember enter this username each time you log in, so you may want to write it somewhere else that is safe and easy

More information

Chief Architect X3 Training Series. Layers and Layer Sets

Chief Architect X3 Training Series. Layers and Layer Sets Chief Architect X3 Training Series Layers and Layer Sets Save time while creating more detailed plans Why do you need Layers? Setting up Layer Lets Adding items to layers Layers and Layout Pages Layer

More information

ArcGIS 9 Using ArcGIS StreetMap

ArcGIS 9 Using ArcGIS StreetMap ArcGIS 9 Using ArcGIS StreetMap Copyright 2001 2004 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

digitization station DIGITAL SCRAPBOOKING 120 West 14th Street

digitization station DIGITAL SCRAPBOOKING 120 West 14th Street digitization station DIGITAL SCRAPBOOKING 120 West 14th Street www.nvcl.ca techconnect@cnv.org DIGITAL SCRAPBOOKING With MyMemories Suite 6 The MyMemories Digital Scrapbooking software allows you to create

More information

Getting Started with Programs

Getting Started with Programs Getting Started with Programs This tutorial is intended to get ScrumWorks Pro users up and running with Programs, a feature available as of ScrumWorks Pro 4. Programs are intended to provide large and

More information

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage

Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage Comparing Across Categories Part of a Series of Tutorials on using Google Sheets to work with data for making charts in Venngage These materials are based upon work supported by the National Science Foundation

More information

Selecting the Right Model Studio PC Version

Selecting the Right Model Studio PC Version Name Recitation Selecting the Right Model Studio PC Version We have seen linear and quadratic models for various data sets. However, once one collects data it is not always clear what model to use; that

More information

Appendix 3 - Using A Spreadsheet for Data Analysis

Appendix 3 - Using A Spreadsheet for Data Analysis 105 Linear Regression - an Overview Appendix 3 - Using A Spreadsheet for Data Analysis Scientists often choose to seek linear relationships, because they are easiest to understand and to analyze. But,

More information

Okay, that s enough talking. Let s get things started. Here s the photo I m going to be using in this tutorial: The original photo.

Okay, that s enough talking. Let s get things started. Here s the photo I m going to be using in this tutorial: The original photo. add visual interest with the rule of thirds In this Photoshop tutorial, we re going to look at how to add more visual interest to our photos by cropping them using a simple, tried and true design trick

More information

PHOTOSHOP PUZZLE EFFECT

PHOTOSHOP PUZZLE EFFECT PHOTOSHOP PUZZLE EFFECT In this Photoshop tutorial, we re going to look at how to easily create a puzzle effect, allowing us to turn any photo into a jigsaw puzzle! Or at least, we ll be creating the illusion

More information

Spreadsheets 2: Calculate!

Spreadsheets 2: Calculate! Spreadsheets 2: Calculate! Name: Main: Spreadsheets are convenient for organizing text information in charts and rows. However, they can also act like a calculator to perform all sorts of mathematical

More information

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat )

Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) 60 Minutes of Excel Secrets Key Terms Term Definition Introduced in: Tab(s) along the ribbon that show additional programs or features (e.g. Acrobat ) Add-Ins AutoCorrect Module 1 Corrects typographical,

More information

Assignment 5 due Monday, May 7

Assignment 5 due Monday, May 7 due Monday, May 7 Simulations and the Law of Large Numbers Overview In both parts of the assignment, you will be calculating a theoretical probability for a certain procedure. In other words, this uses

More information

Alibre Design Tutorial - Simple Extrude Step-Pyramid-1

Alibre Design Tutorial - Simple Extrude Step-Pyramid-1 Alibre Design Tutorial - Simple Extrude Step-Pyramid-1 Part Tutorial Exercise 4: Step-Pyramid-1 [text version] In this Exercise, We will set System Parameters first. Then, in sketch mode, outline the Step

More information

Geometer s Sketchpad Version 4

Geometer s Sketchpad Version 4 Geometer s Sketchpad Version 4 For PC Name: Date: INVESTIGATION: The Pythagorean Theorem Directions: Use the steps below to lead you through the investigation. After each step, be sure to click in the

More information

G E O S E R V E R I N S TA L L

G E O S E R V E R I N S TA L L G E O S E R V E R I N S TA L L Installation and Configuration of GeoServer 01 January 2009 TABLE OF CONTENTS 1 Goals...3 2 Java Development Kit Install:...4 3 Set JAVA_HOME...6 4 GeoServer install...7

More information

Game Design Curriculum Multimedia Fusion 2. Created by Rahul Khurana. Copyright, VisionTech Camps & Classes

Game Design Curriculum Multimedia Fusion 2. Created by Rahul Khurana. Copyright, VisionTech Camps & Classes Game Design Curriculum Multimedia Fusion 2 Before starting the class, introduce the class rules (general behavioral etiquette). Remind students to be careful about walking around the classroom as there

More information

Term Definition Introduced in:

Term Definition Introduced in: 60 Minutes of Access Secrets Key Terms Term Definition Introduced in: Calculated Field A field that displays the results of a calculation. Introduced in Access 2010, this field allows you to make calculations

More information

RosterPro by Demosphere International, Inc.

RosterPro by Demosphere International, Inc. RosterPro by INDEX OF PAGES: Page 2 - Getting Started Logging In About Passwords Log In Information Retrieval Page 3 - Select Season League Home Page Page 4 - League Player Administration Page 5 - League

More information

Part 11: An Overview of TNT Reading Tutor Exercises

Part 11: An Overview of TNT Reading Tutor Exercises Part 11: An Overview of TNT Reading Tutor Exercises TNT Reading Tutor - Reading Comprehension Manual Table of Contents System Help.................................................................................

More information

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS BATCH CONVERTING YOUR SOLIDWORKS FILES

FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS BATCH CONVERTING YOUR SOLIDWORKS FILES FOCUS ON REAL DESIGN AUTOMATE THE REST CUSTOMTOOLS BATCH CONVERTING YOUR SOLIDWORKS FILES Table of Contents BATCH CONVERTING YOUR SOLIDWORKS DOCUMENTS... 3 Introduction... 3 What does it do?... 3 How does

More information

Registering for Corban Accelerated Online

Registering for Corban Accelerated Online Registering for Corban Accelerated Online These are the steps you are about to complete: Login to SIS Search for your course(s) Select the course(s) Add to your schedule Pay for your course(s)* You re

More information

IRISYS ISI Series Imager Report Writing Software

IRISYS ISI Series Imager Report Writing Software IRISYS ISI 4604 4000 Series Imager Report Writing Software User Manual InfraRed Integrated Systems Ltd Park Circle, Tithe Barn Way Swan Valley Northampton NN4 9BG Tel: (0) 1604 594200 Fax: (0) 1604 594210

More information

The Snipping Tool is automatically installed in Windows 7 and Windows 8.

The Snipping Tool is automatically installed in Windows 7 and Windows 8. Introduction The Snipping Tool is a program that is part of Windows Vista, Windows 7, and Window 8. Snipping Tool allows you to take selections of your windows or desktop and save them as snips, or screen

More information

Getting Started. Before You Begin, make sure you customized the following settings:

Getting Started. Before You Begin, make sure you customized the following settings: Getting Started Getting Started Before getting into the detailed instructions for using Generative Drafting, the following tutorial aims at giving you a feel of what you can do with the product. It provides

More information

July 12, so it includes. below. 4. Import File). You. will need to. Page 1

July 12, so it includes. below. 4. Import File). You. will need to. Page 1 July 12, 2012 How to trim the database you send to SGGEE using Legacy genealogy software so it includes only the Germans in your database 1. Print your pedigree chart from your existing genealogy program.

More information

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19 Table of Contents Creating Your First Project 4 Enhancing Your Slides 8 Adding Interactivity 12 Recording a Software Simulation 19 Inserting a Quiz 24 Publishing Your Course 32 More Great Features to Learn

More information

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer

SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer SCRIVENER TUTOR SCRIVENER 102 Customizing Scrivener for the Advanced Writer Introduction I don t have to tell you that Scrivener is an amazing writing program--you know that because you re taking this

More information

Faculty Lecture Capture Guide

Faculty Lecture Capture Guide Faculty Lecture Capture Guide If you have never used Panopto before, follow this first part. Log into your Blackboard Account and open the course you wish to capture: Open your Course Management Control

More information

Financial Disclosure Management Release Notes

Financial Disclosure Management Release Notes Financial Disclosure Management 8.1.0.9 Release Notes Publication 1.0 October 2017 INTRODUCTION... 1 FDM 8.1.0.9 ENHANCEMENTS... 1 MANAGEMENT REPORTS... 2 NEW PILOT PROGRAM! MANAGEMENT REPORTS... 2 Key

More information

Spreadsheets 3: Charts and Graphs

Spreadsheets 3: Charts and Graphs Spreadsheets 3: Charts and Graphs Name: Main: When you have finished this handout, you should have the following skills: Setting up data correctly Labeling axes, legend, scale, title Editing symbols, colors,

More information

3 things you should be doing with your survey results. Get the most out of your survey data.

3 things you should be doing with your survey results. Get the most out of your survey data. 3 things you should be doing with your survey results Get the most out of your survey data. Your survey is done. Now what? Congratulations you finished running your survey! You ve analyzed all your data,

More information

EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+

EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+ EBUScore Pairs Manual Notes to accompany course Robin Barker October 2017 Version 0.4 For EBUScore Pairs v1.1.3+ 1. Getting started 2. Pairs events with travellers 3. Pairs events with Bridgemates 4. Pairs

More information

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls

Excel 2003: Discos. 1. Open Excel. 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls Excel 2003: Discos 1. Open Excel 2. Create Choose a new worksheet and save the file to your area calling it: Disco.xls 3. Enter the following data into your spreadsheet: 4. Make the headings bold. Centre

More information

Virtual Painter 4 Getting Started Guide

Virtual Painter 4 Getting Started Guide Table of Contents What is Virtual Painter?...1 Seeing is Believing...1 About this Guide...4 System Requirements...5 Installing Virtual Painter 4...5 Registering Your Software...7 Getting Help and Technical

More information

SolidWorks Tutorial 1. Axis

SolidWorks Tutorial 1. Axis SolidWorks Tutorial 1 Axis Axis This first exercise provides an introduction to SolidWorks software. First, we will design and draw a simple part: an axis with different diameters. You will learn how to

More information

Microsoft Excel. Creating a Pie Chart on a Picture. 1. In order to create a pie chart on a picture, you need to first find

Microsoft Excel. Creating a Pie Chart on a Picture. 1. In order to create a pie chart on a picture, you need to first find Microsoft Excel Creating a Pie Chart on a Picture Name Date 1. In order to create a pie chart on a picture, you need to first find the picture you want to use. Click on the Internet Explorer icon. 2. When

More information

1.1 Displaying Distributions with Graphs, Continued

1.1 Displaying Distributions with Graphs, Continued 1.1 Displaying Distributions with Graphs, Continued Ulrich Hoensch Thursday, January 10, 2013 Histograms Constructing a frequency table involves breaking the range of values of a quantitative variable

More information

Scrivener Manual Windows Version Part I

Scrivener Manual Windows Version Part I Scrivener Manual Windows Version 2013 Part I Getting Started Creating Your Scrivener Project In Scrivener, click File and then click New Project. You will have the option to choose from one of Scrivener

More information

Meteor Game for Multimedia Fusion 1.5

Meteor Game for Multimedia Fusion 1.5 Meteor Game for Multimedia Fusion 1.5 Badly written by Jeff Vance jvance@clickteam.com For Multimedia Fusion 1.5 demo version Based off the class How to make video games. I taught at University Park Community

More information

SURREALISM IN PHOTOSHOP

SURREALISM IN PHOTOSHOP SURREALISM IN PHOTOSHOP In this tutorial your aim is to create a surrealist inspired image using Photoshop. You will combine a selection of images in an illogical, non realistic manner. Set up a folder

More information

Solidworks tutorial. drawing. A u t h o r : M. G h a s e m i. C o n t a c t u s : i n f s o l i d w o r k s a d v i s o r.

Solidworks tutorial. drawing. A u t h o r : M. G h a s e m i. C o n t a c t u s : i n f s o l i d w o r k s a d v i s o r. Solidworks tutorial drawing A u t h o r : M. G h a s e m i C o n t a c t u s : i n f o @ s o l i d w o r k s a d v i s o r. c o m The manufacturing techniques had a vast development during the past decades.

More information

Wahl HSI3000 Series Imager Report Writer Software

Wahl HSI3000 Series Imager Report Writer Software Wahl HSI3000 Series Imager Report Writer Software User Manual WD1024 Rev A 04/18/08 Palmer Wahl Instrumentation Group 234 Old Weaverville Road Asheville, NC 28804 Phone: (828) 658-3131 Fax: (828) 658-0728

More information

< The Family Demographics table contains the family demographic data, including home address and phone number

< The Family Demographics table contains the family demographic data, including home address and phone number The Church Executive Family Demographics Introduction Index Introduction... 1 Definitions... 2 Drop-down Lists... 3 User-defined fields... 4 Procedure... 5 Fields... 6 Family Members... 9 The Family Demographics

More information

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003

6. Multivariate EDA. ACE 492 SA - Spatial Analysis Fall 2003 1 Objectives 6. Multivariate EDA ACE 492 SA - Spatial Analysis Fall 2003 c 2003 by Luc Anselin, All Rights Reserved This lab covers some basic approaches to carry out EDA with a focus on discovering multivariate

More information

Oldham Lifelong Learning Service Frances Hill

Oldham Lifelong Learning Service Frances Hill SET UP A MOODLE BOOK Moodle Books are made up of connected web pages. You can therefore build into your book anything which is possible in Page, except that you are not restricted to just one page. The

More information

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5

Microsoft Excel Lab Three (Completed 03/02/18) Transcript by Rev.com. Page 1 of 5 Speaker 1: Hello everyone and welcome back to Microsoft Excel 2003. In today's lecture, we will cover Excel Lab Three. To get started with this lab, you will need two files. The first file is "Excel Lab

More information

Creating Photo Borders With Photoshop Brushes

Creating Photo Borders With Photoshop Brushes Creating Photo Borders With Photoshop Brushes Written by Steve Patterson. In this Photoshop photo effects tutorial, we ll learn how to create interesting photo border effects using Photoshop s brushes.

More information

OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office

OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office OOo Switch: 501 Things You Wanted to Know About Switching to OpenOffice.org from Microsoft Office Tamar E. Granor Hentzenwerke Publishing ii Table of Contents Our Contract with You, The Reader Acknowledgements

More information

Ansoft Designer Tutorial ECE 584 October, 2004

Ansoft Designer Tutorial ECE 584 October, 2004 Ansoft Designer Tutorial ECE 584 October, 2004 This tutorial will serve as an introduction to the Ansoft Designer Microwave CAD package by stepping through a simple design problem. Please note that there

More information

Step 1: Open A Photo To Place Inside Your Text

Step 1: Open A Photo To Place Inside Your Text Place A Photo Or Image In Text In Photoshop In this Photoshop tutorial, we re going to learn how to place a photo or image inside text, a very popular thing to do in Photoshop, and also a very easy thing

More information

2010 Teacher Created Resources, Inc.

2010 Teacher Created Resources, Inc. Editor Sara Connolly Cover Artist Brenda DiAntonis Editor in Chief Ina Massler Levin, M.A. Creative Director Karen J. Goldfluss, M.S. Ed. Imaging James Edward Grace Craig Gunnell Publisher Mary D. Smith,

More information

Quick Guide for ArcReader GIS Installation & Use

Quick Guide for ArcReader GIS Installation & Use Town of Hanover Planning Department Quick Guide for ArcReader GIS Installation & Use For more information, contact the Town Planner, Andrew Port (781-826-7641) or port.planning@hanover-ma.gov System Requirements

More information

Introduction to Layers

Introduction to Layers Introduction to Layers By Anna Castano A layer is an image or text that is piled on top of another. There are many things you can do with layer and it is easy to understand how it works. Through the introduction

More information

with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation

with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation with MultiMedia CD Randy H. Shih Jack Zecher SDC PUBLICATIONS Schroff Development Corporation WWW.SCHROFF.COM Lesson 1 Geometric Construction Basics AutoCAD LT 2002 Tutorial 1-1 1-2 AutoCAD LT 2002 Tutorial

More information

Graphing Motion Simulation 8 th Grade PSI Score / 23 points. Learning Goals: Be able to describe movement by looking at a motion graph

Graphing Motion Simulation 8 th Grade PSI Score / 23 points. Learning Goals: Be able to describe movement by looking at a motion graph Graphing Motion Simulation Name 8 th Grade PSI Score / 23 points Learning Goals: Be able to describe movement by looking at a motion graph Directions: Open up the simulation Moving Man. Either type in:

More information

Release Highlights for BluePrint-PCB Product Version 1.8

Release Highlights for BluePrint-PCB Product Version 1.8 Release Highlights for BluePrint-PCB Product Version 1.8 Introduction BluePrint Version 1.8 Build 341 is a rolling release update. BluePrint rolling releases allow us to be extremely responsive to customer

More information

DESIGN A SHOOTING STYLE GAME IN FLASH 8

DESIGN A SHOOTING STYLE GAME IN FLASH 8 DESIGN A SHOOTING STYLE GAME IN FLASH 8 In this tutorial, you will learn how to make a basic arcade style shooting game in Flash 8. An example of the type of game you will create is the game Mozzie Blitz

More information

Creo Extrude Tutorial 2: Cutting and Adding Material

Creo Extrude Tutorial 2: Cutting and Adding Material Creo Extrude Tutorial 2: Cutting and Adding Material 1. Open Creo Parametric 2. File > Open > extrudeturial (From Creo Extrude Tutorial 1) 3. Cutting Material a. Click Extrude Icon > Select the following

More information

Fire CR Calibration Guide

Fire CR Calibration Guide 1 Fire CR Calibration Guide This reference guide will guide you through the steps to complete the calibration for the Fire CR.. Getting Started: 1. Click on the Opal Icon on the Desktop. Figure 1 2. Once

More information

SURREALISM IN PHOTOSHOP

SURREALISM IN PHOTOSHOP SURREALISM IN PHOTOSHOP In this tutorial your aim is to create a surrealist inspired image using Photoshop. You will combine a selection of images in an illogical, non realistic manner. Set up a folder

More information

Data Analysis Part 1: Excel, Log-log, & Semi-log plots

Data Analysis Part 1: Excel, Log-log, & Semi-log plots Data Analysis Part 1: Excel, Log-log, & Semi-log plots Why Excel is useful Excel is a powerful tool used across engineering fields. Organizing data Multiple types: date, text, numbers, currency, etc Sorting

More information

Making Your World with the Aurora Toolset

Making Your World with the Aurora Toolset Making Your World with the Aurora Toolset The goal of this tutorial is to build a very simple module to ensure that you've picked up the necessary skills for the other tutorials. After completing this

More information

In this project you ll learn how to code your own musical instruments!

In this project you ll learn how to code your own musical instruments! Rock Band Introduction In this project you ll learn how to code your own musical instruments! Step 1: Sprites Before you can start coding, you ll need to add in a thing to code. In Scratch, these things

More information

Fotini. Software User s Guide

Fotini. Software User s Guide Fotini Software User s Guide Table of Contents What is Fotini? How is Fotini set up on my computer? Getting Started How do I? Start the program End the program Open an album See photo details Move to the

More information

AUDACITY TABLE OF CONTENTS

AUDACITY TABLE OF CONTENTS Audacity Tutorial AUDACITY Audacity is a free, easy-to-use and multilingual audio editor and recorder for Windows, Mac OS X, GNU/Linux and other operating systems. You can use Audacity to record live audio,

More information

AutoCAD Lab 1 Basics and Drawing Fundamentals. EGS 1007 Engineering Concepts and Methods

AutoCAD Lab 1 Basics and Drawing Fundamentals. EGS 1007 Engineering Concepts and Methods AutoCAD Lab 1 Basics and Drawing Fundamentals EGS 1007 Engineering Concepts and Methods Will the Computer Ever REPLACE Pencil and Paper Drawings? Maybe someday When a computer becomes as light, small,

More information

PivotTables PivotCharts (Chapter 5)

PivotTables PivotCharts (Chapter 5) If a database contains a lot of information and the user would like to work with only a selection of the data in a table or as a chart, PivotTables and PivotCharts are a great solution. Data Mining: the

More information

Converting a solid to a sheet metal part tutorial

Converting a solid to a sheet metal part tutorial Converting a solid to a sheet metal part tutorial Introduction Sometimes it is easier to start with a solid and convert it to create a sheet metal part. This tutorial will guide you through the process

More information

2. Now you need to create permissions for all of your reviewers. You need to be in the Administration Tab to do so. Your screen should look like this:

2. Now you need to create permissions for all of your reviewers. You need to be in the Administration Tab to do so. Your screen should look like this: How to set up AppReview 1. Log in to AppReview at https://ar.applyyourself.com a. Use 951 as the school code, your 6+2 as your username, and the password you created. 2. Now you need to create permissions

More information

WELCOME TO BINGO CALLER

WELCOME TO BINGO CALLER WELCOME TO BINGO CALLER Dee Dee Software Design & Sales A Division Of Seocom Enterprises Unlimited LLC Bingo Caller was designed to be used at a computer screen resolution of at least 1024 x 768, along

More information

FlashChart. Symbols and Chart Settings. Main menu navigation. Data compression and time period of the chart. Chart types.

FlashChart. Symbols and Chart Settings. Main menu navigation. Data compression and time period of the chart. Chart types. FlashChart Symbols and Chart Settings With FlashChart you can display several symbols (for example indices, securities or currency pairs) in an interactive chart. You can also add indicators and draw on

More information

Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1

Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1 Alibre Design Tutorial: Loft, Extrude, & Revolve Cut Loft-Tube-1 Part Tutorial Exercise 5: Loft-Tube-1 [Complete] In this Exercise, We will set System Parameters first, then part options. Then, in sketch

More information

Female Height. Height (inches)

Female Height. Height (inches) Math 111 Normal distribution NAME: Consider the histogram detailing female height. The mean is 6 and the standard deviation is 2.. We will use it to introduce and practice the ideas of normal distributions.

More information

Family Tree Analyzer Part II Introduction to the Menus & Tabs

Family Tree Analyzer Part II Introduction to the Menus & Tabs Family Tree Analyzer Part II Introduction to the Menus & Tabs Getting Started If you haven t already got FTAnalyzer installed and running you should see the guide Family Tree Analyzer Part I Installation

More information

How to Create Website Banners

How to Create Website Banners How to Create Website Banners In the following instructions you will be creating banners in Adobe Photoshop Elements 6.0, using different images and fonts. The instructions will consist of finding images,

More information

Importing and processing gel images

Importing and processing gel images BioNumerics Tutorial: Importing and processing gel images 1 Aim Comprehensive tools for the processing of electrophoresis fingerprints, both from slab gels and capillary sequencers are incorporated into

More information

Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec )

Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec ) Land Cover Change Analysis An Introduction to Land Cover Change Analysis using the Multispectral Image Data Analysis System (MultiSpec ) Level: Grades 9 to 12 Macintosh version Earth Observation Day Tutorial

More information

Getting Started with Qucs

Getting Started with Qucs Getting Started with Qucs Graham Edge University of Toronto After downloading Qucs, installing it, and running for the first time you should see a window that looks something like this: The large yellow

More information

Using Puzzilla.org to Find a Family to Research

Using Puzzilla.org to Find a Family to Research ADOPT-A-FAMILY #1: Using Puzzilla.org to Find a Family to Research Go to puzzilla.org and click sign in Sign in with your FamilySearch login Click OK to allow Puzzilla to load your tree from FamilySearch

More information

In this tutorial you will use Photo Story 3, a free software program from Microsoft, to create digital stories using text, graphics and music.

In this tutorial you will use Photo Story 3, a free software program from Microsoft, to create digital stories using text, graphics and music. In this tutorial you will use Photo Story 3, a free software program from Microsoft, to create digital stories using text, graphics and music. What you will learn: o System Requirements and Recommendations

More information

Enrichment chapter: ICT and computers. Objectives. Enrichment

Enrichment chapter: ICT and computers. Objectives. Enrichment Enrichment chapter: ICT and computers Objectives By the end of this chapter the student should be able to: List some of the uses of Information and Communications Technology (ICT) Use a computer to perform

More information

CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL Lets try to graph this data

CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL Lets try to graph this data CREATING (AB) SINGLE- SUBJECT DESIGN GRAPHS IN MICROSOFT EXCEL 2003 Lets try to graph this data Date Baseline Data Date NCR (intervention) 11/10 11/11 11/12 11/13 2 3 3 1 11/15 11/16 11/17 11/18 3 3 2

More information

Making an Architectural Drawing Template

Making an Architectural Drawing Template C h a p t e r 8 Addendum: Architectural Making an Architectural Drawing Template In this chapter, you will learn the following to World Class standards:! Starting from Scratch for the Last time! Creating

More information

04. Two Player Pong. 04.Two Player Pong

04. Two Player Pong. 04.Two Player Pong 04.Two Player Pong One of the most basic and classic computer games of all time is Pong. Originally released by Atari in 1972 it was a commercial hit and it is also the perfect game for anyone starting

More information