FALL CS 146 (LAB6)

Size: px
Start display at page:

Download "FALL CS 146 (LAB6)"

Transcription

1 FALL CS 146 (LAB6) EDUCATIONAL GOALS OF THIS LAB Verify that students can 1. Define subs. 2. Declare variables and assign them values. 3. Perform some simple mathematical calculation. 4. Use the different selection statement 5. Use Loop. 6. Use Message box and Input box. 7. Use worksheets and workbooks operations. 8. Use Chart. LAB DETAILS Download the excel file called Movies.xlsx, which contains information about different movies. You are going to answer five different problems about such file. The description for every problem is described in the next sections. Open the file, then choose the file menu and pick the save as option. Save the file as YOURNAME.xlms, replace YOURNAME with your Actual Real Name. (If you are working on the lab desktop then make sure to save your data under your personal drive, (don t save your file on your desktop or my documents). However, if you are using your laptop then make sure to save your file under a cloud storage application (Dropbox, GoogleDrive, OneDrive, etc. (If you don t know them, then ask me or your TA)). BACKGROUND The file that you donwloaded above contains infromation about 24 movies. For each movie you have the following infromation stored into column C to G: The movie s number. The movie s title. The movie s title. The movie s distributor The movie s box office (USD MM) The movie s rating

2 The following is a screenshot of the file data. PROBLEM 1 Define a sub called CreateThreeNewExcelFiles. The code inside the sub will perform the following operations: 1. Create a new workbook 2. Save the new workbook you created in step 1 under the name 20th Century Fox.xlsx. 3. Create another new workbook 4. Save the new workbook you created in step 3 under the name Restricted Movies.xlsx. 5. Create another new workbook 6. Save the new workbook you created in step 5 under the name Distributors Total Sales.xlsx. 7. Show the number of opened workbooks in a message box.

3 8. Now write inside the second workbook (the one which has the name 20th Century Fox.xlsx) the following: a. Inside the cell D1 write Movie Title b. Inside the cell E1 write Box Office Sales 9. Now write inside the third workbook (the one which has the name Restricted Movies.xlsx) the following: a. Inside the cell D1 write Movie Title 10. Now write inside the fourth workbook (the one which has the name Distributors Total Sales.xlsx) the following: a. Inside the cell D1 write Distributor b. Inside the cell E1 write Total Sales Test your Sub 2. Now draw a button inside the cells I11 to L Associate the button with the sub/marco CreateThreeNewExcelFiles 4. Give the button the caption (Text inside the button) Create Three New Excel Files PROBLEM 2 Before you start working on this problem, you have to make sure that you answer the first problem. Define a sub called Fill20thCenturyFoxFile. The code inside the sub will perform the following operations: 1. Go over all the movies (what do you need here?) from the first sheet in the workbook (that holds your name) to the first sheet in the first workbook you created in problem (20th Century Fox.xlsx) based on the following condition/criteria: a. Test if the movie is distributed by 20th Century Fox, if it is, then: i. Copy the title of the movie to the column D in the destination sheet. ii. Copy the Box Office Sales of the movie to the column E in the destination sheet.

4 iii. Don t leave any gap between the data inside the destination sheet, and you should start from row 2 in the first sheet of the second workbooks (20th Century Fox.xlsx). 2. Close the workbook 20th Century Fox.xlsx. You should be able to see the following result at sheet1 of the second workbook. Test your Sub 2. Now draw a button inside the cells I15 to L Associate the button with the sub/marco Fill20thCenturyFoxFile 4. Give the button the caption (Text inside the button) Fill 20 th Century Fox File PROBLEM 3 Before you start working on this problem, you have to make sure that you answer the first problem. Define a sub called FillRestrictedMovies. The code inside the sub will perform the following operations: 1. Go over all the movies (what do you need here?) from the first sheet in the workbook (that holds your name) to the first sheet in the second workbook you created in problem (Restricted Movies.xlsx) based on the following condition/criteria: a. Test if the movie is classified as restricted (R), if it is, then: i. Copy the title of the movie to the column D in the destination sheet.

5 ii. Don t leave any gap between the data inside the destination sheet, and you should start from row 2 in the first sheet of the second workbooks (Restricted Movies.xlsx). You should be able to see the following result at sheet1 of the third workbook. Test your Sub 2. Now draw a button inside the cells I19 to L Associate the button with the sub/marco FillRestrictedMovies 4. Give the button the caption (Text inside the button) Fill Restricted Movies PROBLEM 4 Before you start working on this problem, you have to make sure that you answer the first problem. This is a sub that has a long code, but there is a lot of repetition there. Define a sub called DistributorsTotalSales. The code inside the sub will perform the following operations: 1. Now write inside the fourth workbook (the one which has the name Distributors Total Sales.xlsx) the following: a. Inside the cell D2 write Disney b. Inside the cell D3 write Lionsgate c. Inside the cell D4 write Warner Bros

6 d. Inside the cell D5 write Paramount e. Inside the cell D6 write 20th Century Fox f. Inside the cell D7 write Sony g. Inside the cell D8 write Universal 2. Go over all the movies (what do you need here?) from the first sheet in the workbook (that holds your name) to the fourth sheet in the first workbook you created in problem (Distributors Total Sales.xlsx) based on the following condition/criteria: a. Test if the movie s distributor is Disney, if it is, then: distributed by Disney. ii. After you find the total, then put the total into E2 of the first sheet of b. Test if the movie s distributor is Lionsgate, if it is, then: distributed by Lionsgate. ii. After you find the total, then put the total into E3 of the first sheet of c. Test if the movie s distributor is Warner Bros, if it is, then: distributed by Warner Bros. ii. After you find the total, then put the total into E4 of the first sheet of d. Test if the movie s distributor is Paramount, if it is, then: distributed by Paramount. ii. After you find the total, then put the total into E5 of the first sheet of e. Test if the movie s distributor is 20th Century Fox, if it is, then: distributed by 20th Century Fox. ii. After you find the total, then put the total into E6 of the first sheet of f. Test if the movie s distributor is Sony, if it is, then: distributed by Sony. ii. After you find the total, then put the total into E7 of the first sheet of g. Test if the movie s distributor is Universal, if it is, then:

7 distributed by Universal. ii. After you find the total, then put the total into E8 of the first sheet of You should be able to see the following result at sheet1 of the fourth workbook 3. Now create a chart based on the data (D2:E8) stored inside the first sheet of the workbook called The chart has the following properties a. The type of the chart is a clustered column chart. b. It is located inside a separate sheet. c. Add a data label for the data inside the chart d. It has a title called Distributors Totals Now, you should be able to see the following chart.

8 Test your Sub 2. Now draw a button inside the cells I23 to L Associate the button with the sub/marco DistributorsTotalSales 4. Give the button the caption (Text inside the button) Distributors Total Sales PROBLEM 5 Before you start working on this problem, you have to make sure that you answer the first problem. Define a sub called CloseAllFiles. The code inside the sub will perform the following operations: 1. Save the second workbook (20th Century Fox.xlsx). 2. Close the second workbook (20th Century Fox.xlsx). 3. Save the third workbook (Restricted Movies.xlsx). 4. Close the third workbook (Restricted Movies.xlsx). 5. Save the fourth workbook (Distributors Total Sales.xlsx). 6. Close the fourth workbook (Distributors Total Sales.xlsx). 7. Close the first workbook (YOURNAME.xlms). Test your Sub 2. Now draw a button inside the cells I27 to L Associate the button with the sub/marco CloseAllFiles 4. Give the button the caption (Text inside the button) Close All Files LAB DUE TIME 1. Save your work (Make sure to name the file with xlms extension, otherwise, all your work will be lost)

9 2. Upload only the file called YOURNAME.xlms to Blackboard under lab6. The due date for that is Monday 12/3/2018 at 11:59pm. No late work will be accepted

BaSICS OF excel By: Steven 10.1

BaSICS OF excel By: Steven 10.1 BaSICS OF excel By: Steven 10.1 Workbook 1 workbook is made out of spreadsheet files. You can add it by going to (File > New Workbook). Cell Each & every rectangular box in a spreadsheet is referred as

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

Workbooks (File) and Worksheet Handling

Workbooks (File) and Worksheet Handling Workbooks (File) and Worksheet Handling Excel Limitation Excel shortcut use and benefits Excel setting and custom list creation Excel Template and File location system Advanced Paste Special Calculation

More information

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12

addition + =5+C2 adds 5 to the value in cell C2 multiplication * =F6*0.12 multiplies the value in cell F6 by 0.12 BIOL 001 Excel Quick Reference Guide (Office 2010) For your lab report and some of your assignments, you will need to use Excel to analyze your data and/or generate graphs. This guide highlights specific

More information

Graded Project. Computer Applications

Graded Project. Computer Applications Computer Applications PENN FOSTER, INC. 2016 INTRODUCTION CONTENTS INTRODUCTION 2 INSTRUCTIONS 2 SCORING GUIDELINES 10 SUBMITTING YOUR PROJECT 13 PAGE 1 COMPUTER APPLICATIONS INTRODUCTION This project

More information

(cell) please call or text (office) (home) Office C203

(cell) please call or text (office) (home) Office C203 DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 A2 B2 (3-0-1.5) Excel and Access, Core 67.5 Hours Monday, Tuesday and Thursday 1 2:30 p.m. E306 Instructor Sharron Barr

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

Lab 2: Your first web page

Lab 2: Your first web page Lab 2: Your first web page Due date DUE DATE: 3/3/2017, by 5pm. Demo in lab section/ta office hours. Overview In this lab we will walk through the usage of Microsoft Excel to create bar charts, pie charts,

More information

The construction of MS Excel program:

The construction of MS Excel program: Chapter 10 Introduction to MS Excel 2003 Introduction to Microsoft Excel 2003: MS Excel is an application program. MS Excel is the most famous spreadsheet program. We can use it mainly for calculations.

More information

Basic tasks in Excel 2013

Basic tasks in Excel 2013 Basic tasks in Excel 2013 Excel is an incredibly powerful tool for getting meaning out of vast amounts of data. But it also works really well for simple calculations and tracking almost any kind of information.

More information

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours

DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3( ) Excel and Access, Core 67.5 Hours DEPARTMENT OF BUSINESS AND OFFICE ADMINISTRATION COURSE OUTLINE FALL 2017 OA 1145 B2 3(3-0-1.5) Excel and Access, Core 67.5 Hours Monday, Wednesday, and Friday 1:00 2:20 p.m. A312 Instructor Janelle MacRae

More information

Commercial Computer Systems

Commercial Computer Systems Commercial Computer Systems Department of Accountancy Last Assessment Opportunity November 2016 TIME: MARKS: ASSESSOR: MODERATOR: 2 HOURS 100 Mr W Malherbe Mr J Wessels STUDENT NUMBER: INITIALS & SURNAME:

More information

Microsoft Excel 2010 Level 1

Microsoft Excel 2010 Level 1 Microsoft Excel 2010 Level 1 Length: 1 Day Technology: MS Excel 2010 Delivery Method: Instructor-led (classroom) About this Course This one-day instructor-led course provides students with an overview

More information

Microsoft Excel 2013 Unit 1: Spreadsheet Basics & Navigation Student Packet

Microsoft Excel 2013 Unit 1: Spreadsheet Basics & Navigation Student Packet Microsoft Excel 2013 Unit 1: Spreadsheet Basics & Navigation Student Packet Signing your name below means the work you are turning in is your own work and you haven t given your work to anyone else. Name

More information

Introduction. Understanding charts. Excel 2016

Introduction. Understanding charts. Excel 2016 Excel 2016 Charts Introduction It can be di icult to interpret Excel workbooks that contain a lot of data. Charts allow you to illustrate your workbook data graphically, which makes it easy to visualize

More information

Insert Subtotals in Excel and Link Data to a Word Document

Insert Subtotals in Excel and Link Data to a Word Document CHAPTER 1 Integrated Projects More Skills 11 Insert Subtotals in Excel and Link Data to a Word Document In Excel, summary statistics such as totals and averages can be calculated for groups of data by

More information

Excel Simulations - 1

Excel Simulations - 1 Excel Simulations - [] We are going to look at a number of ways Excel can be used to create worksheet simulations that help students visualize concepts. The first type of simulation we will create will

More information

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart

Microsoft Excel Chapter 1. Creating a Worksheet and an Embedded Chart Microsoft Excel 2010 Chapter 1 Creating a Worksheet and an Embedded Chart Objectives Describe the Excel worksheet Enter text and numbers Use the Sum button to sum a range of cells Copy the contents of

More information

A Product of. Structured Solutions Inc.

A Product of. Structured Solutions Inc. SSI Tools Time Scaled Values Analysis Tools Structured Solutions Inc. www.ssitools.com A Product of Structured Solutions Inc. 1 Modify The Columns in the Sheet Named Template SSI Status Workbook Template

More information

Excel Manual X Axis Labels Below Chart 2010 Scatter

Excel Manual X Axis Labels Below Chart 2010 Scatter Excel Manual X Axis Labels Below Chart 2010 Scatter Of course, I want the chart itself to remain the same, so, the x values of dots are in row "b(o/c)", their y values are in "a(h/c)" row, and their respective

More information

Excel. More Skills 11 Insert and Edit Comments. To complete this workbook, you will need the following file: You will save your workbook as: CHAPTER 2

Excel. More Skills 11 Insert and Edit Comments. To complete this workbook, you will need the following file: You will save your workbook as: CHAPTER 2 CHAPTER 2 Excel More Skills 11 Insert and Edit Comments A comment is a note that is attached to a cell, separate from other cell content. Comments can describe how a complex formula works or provide feedback

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

Excel 2010-Part. Two

Excel 2010-Part. Two Jefferson Parish Library Computer Training Team Excel 2010-Part Two August 2011 Symbols Used in Formulas Add Subtract Divide Multiply + - / * When working with formulas in Excel you will use basic keyboard

More information

Excel Project 1 Creating a Worksheet and an Embedded Chart

Excel Project 1 Creating a Worksheet and an Embedded Chart 7 th grade Business & Computer Science 1 Excel Project 1 Creating a Worksheet and an Embedded Chart What is MS Excel? MS Excel is a powerful spreadsheet program that allows users to organize data, complete

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

Open a new Excel workbook and look for the Standard Toolbar.

Open a new Excel workbook and look for the Standard Toolbar. This activity shows how to use a spreadsheet to draw line graphs. Open a new Excel workbook and look for the Standard Toolbar. If it is not there, left click on View then Toolbars, then Standard to make

More information

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key.

To be able to create charts that graphically represent your worksheet data, you will: Create column charts on chart sheets by using the F11 key. L E S S O N 1 Creating charts Suggested teaching time 55-65 minutes Lesson objectives To be able to create charts that graphically represent your worksheet data, you will: a b c Create column charts on

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

More information

Microsoft Office Excel 2016 for Mac

Microsoft Office Excel 2016 for Mac Microsoft Office Excel 2016 for Mac Introduction to Charts University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2016 KSU Division of University Information

More information

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks

Microsoft Office Excel Create a worksheet group. A worksheet group. Tutorial 6 Working With Multiple Worksheets and Workbooks Microsoft Office Excel 2003 Tutorial 6 Working With Multiple Worksheets and Workbooks 1 Create a worksheet group A workbook is a collection of worksheets. You may want to work with the worksheets within

More information

Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools

Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools Structured Solutions Inc. Tools MS Project to Excel Export/Import Tools This Macro Enabled Excel workbook contains a collection of useful tools that enables the user to Get, Post or Lookup data from MS

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

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

Inserting or deleting a worksheet

Inserting or deleting a worksheet Inserting or deleting a worksheet To insert a new worksheet at the end of the existing worksheets, just click the Insert Worksheet tab at the bottom of the screen. To insert a new worksheet before an existing

More information

Course Overview. Audience Profile. At Course Completion. Module Title : 50546A: Learn Microsoft Excel 2010 Step by Step, Level 3

Course Overview. Audience Profile. At Course Completion. Module Title : 50546A: Learn Microsoft Excel 2010 Step by Step, Level 3 Module Title : 50546A: Learn Microsoft Excel 2010 Step by Step, Level 3 Duration : 1 day Course Overview This one-day instructor-ledcourse provides students with the skills to analyze alternative data

More information

Microsoft Office Illustrated. Getting Started with Excel 2007

Microsoft Office Illustrated. Getting Started with Excel 2007 Microsoft Office 2007- Illustrated Getting Started with Excel 2007 Objectives Understand spreadsheet software Tour the Excel 2007 window Understand formulas Enter labels and values and use AutoSum Objectives

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

Review # What technique selects data from the Internet to add to an Excel worksheet? A. Web search B. Web filter C. Internet probe D.

Review # What technique selects data from the Internet to add to an Excel worksheet? A. Web search B. Web filter C. Internet probe D. Review #8 176. What technique selects data from the Internet to add to an Excel A. Web search B. Web filter C. Internet probe D. Web query 177. What is a single character, word, or phrase in a cell on

More information

COMPUTERIZED OFFICE SUPPORT PROGRAM

COMPUTERIZED OFFICE SUPPORT PROGRAM NH108 Excel Level 1 16 Total Hours COURSE TITLE: Excel Level 1 COURSE OVERVIEW: This course provides students with the knowledge and skills to create spreadsheets and workbooks that can be used to store,

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

PART 7. Getting Started with Excel

PART 7. Getting Started with Excel PART 7 Getting ed with Excel When you start the application, Excel displays a blank workbook. A workbook is a file in which you store your data, similar to a three-ring binder. Within a workbook are worksheets,

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

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction

For comprehensive certification training, students should complete Excel 2007: Basic, Intermediate, and Advanced. Course Introduction Microsoft Office Excel 2007: Intermediate Course Length: 1 Day Course Overview This course builds on the skills and concepts taught in Excel 2007: Basic. Students will learn how to use multiple worksheets

More information

Introduction to Microsoft Excel

Introduction to Microsoft Excel Intro to Excel Introduction to Microsoft Excel OVERVIEW In this lab, you will become familiar with the general layout and features of Microsoft Excel spreadsheet computer application. Excel has many features,

More information

GO! with Microsoft Access 2016 Comprehensive

GO! with Microsoft Access 2016 Comprehensive GO! with Microsoft Access 2016 Comprehensive First Edition Chapter 1 Getting Started with Microsoft Access 2016 Learning Objectives Identify Good Database Design Create a Table and Define Fields in a Blank

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

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

2. INTRODUCTORY EXCEL

2. INTRODUCTORY EXCEL CS130 - Introductory Excel 1 2. INTRODUCTORY EXCEL Fall 2017 CS130 - Introductory Excel 2 Introduction to Excel What is Microsoft Excel? What can we do with Excel? CS130 - Introductory Excel 3 Launch Excel

More information

TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE. Modified

TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE. Modified TestOut Desktop Pro Plus - English 3.0.x COURSE OUTLINE Modified 2016-08-19 TestOut Desktop Pro Plus English 3.0.x Videos: 157 (9:14:00) Simulations: 172 Fact Sheets: 111 Exams: 6 CONTENTS: 0.0 GETTING

More information

Table of Contents Getting Started with Excel Creating a Workbook

Table of Contents Getting Started with Excel Creating a Workbook Finney Learning Systems i Table of Contents Welcome........................... vii Copying the Student Files................ viii Setting up Excel to Work with This Course...... viii Lesson 1 Getting Started

More information

2017 Computer Proficiency Assessment Test

2017 Computer Proficiency Assessment Test 2017 Computer Proficiency Assessment Test A. Are you required to satisfy the Core Goal V: computer use? The Core Goal V requirement applies to full/part time undergraduate students who matriculated at

More information

Excel Second Edition.

Excel Second Edition. Excel 2016 Second Edition LearnKey provides self-paced training courses and online learning solutions to education, government, business, and individuals world-wide. With dynamic video-based courseware

More information

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs In this technology assignment, you will find a quadratic function that passes through three of the points on each of the scatter plots you created in an earlier technology assignment. You will need the

More information

Deduction Statement Template Setup

Deduction Statement Template Setup Deduction Statement Template Setup By now you should have carried out the CIS Folder Setup on your computer. If you have not done so you will need to do this before you can proceed with this setup. Important

More information

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer

The American University in Cairo. Academic Computing Services. Excel prepared by. Maha Amer The American University in Cairo Excel 2000 prepared by Maha Amer Spring 2001 Table of Contents: Opening the Excel Program Creating, Opening and Saving Excel Worksheets Sheet Structure Formatting Text

More information

MicroStrategy Academic Program

MicroStrategy Academic Program MicroStrategy Academic Program Creating a center of excellence for enterprise analytics and mobility. HOW TO DEPLOY ENTERPRISE ANALYTICS AND MOBILITY ON AWS APPROXIMATE TIME NEEDED: 1 HOUR In this workshop,

More information

Tricking it Out: Tricks to personalize and customize your graphs.

Tricking it Out: Tricks to personalize and customize your graphs. Tricking it Out: Tricks to personalize and customize your graphs. Graphing templates may be used online without downloading them onto your own computer. However, if you would like to use the templates

More information

Online Services. Sept 2017

Online Services. Sept 2017 Online Services Sept 2017 Why I use these services? Syncing between various devices is easy Sync between Desktop, Laptop and ipad Sharing files Better than sending attachments Online backup Keep additional

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

Watch the video below to learn more about freezing panes in Excel. *Video removed from printing pages. To freeze rows:

Watch the video below to learn more about freezing panes in Excel. *Video removed from printing pages. To freeze rows: Excel 06 Freezing Panes and View Options Introduction Whenever you're working with a lot of data, it can be di icult to compare information in your workbook. Fortunately, Excel includes several tools that

More information

Importing Local Contacts from Thunderbird

Importing Local Contacts from Thunderbird 1 Importing Local Contacts from Thunderbird Step 1, Export Contacts from Thunderbird In Thunderbird, select Address Book. In the Address Book, click on Personal Address Book and then select Export from

More information

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model)

Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Office 2016 Excel Basics 21 Video/Class Project #33 Excel Basics 21: Relationships Rather than VLOOKUP for PivotTable Reports (Excel 2016 Data Model) Goal in video # 21: Learn about how to use the Relationships

More information

Taking Attendance with a Spreadsheet

Taking Attendance with a Spreadsheet Appendix A Taking Attendance with a Spreadsheet In this chapter, we will learn the following to World Class standards: Designing an Attendance Spreadsheet Opening Microsoft Excel Build the Spreadsheet

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

TestOut Desktop Pro - English 1.0.x COURSE OUTLINE

TestOut Desktop Pro - English 1.0.x COURSE OUTLINE TestOut Desktop Pro - English 1.0.x COURSE OUTLINE TestOut Desktop Pro English 1.0.x Videos: 113 (6:45:21) Simulations: 148 Fact Sheets: 97 Exams: 4 CONTENTS: 0.0 GETTING STARTED INFORMATION Video: Introduction

More information

From a laptop or desktop computer.

From a laptop or desktop computer. Using Office 365 Signing in to Office 365 Office 365 is a web-based office suite that allows the user to create, edit, and share documents and presentations from any internet enabled computer, tablet,

More information

CS10001: Computer Literacy Lab Assignment #3, Part #2

CS10001: Computer Literacy Lab Assignment #3, Part #2 CS10001: Computer Literacy Lab Assignment #3, Part #2 Notes: This lab is an independent study, and the steps are written for Word 2003. If you are using Word 2007 on your personal computer, then you will

More information

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets.

Agenda. Spreadsheet Applications. Spreadsheet Terminology A workbook consists of multiple worksheets. By default, a workbook has 3 worksheets. Agenda Unit 1 Assessment Review Progress Reports Intro to Excel Learn parts of an Excel spreadsheet How to Plan a spreadsheet Create a spreadsheet Analyze data Create an embedded chart in spreadsheet In

More information

EditGrid Excel Plus Links

EditGrid Excel Plus Links EditGrid Excel Plus Links...1 Installation...2 Using EditGrid Excel Plus (quick)...3 Warnings:...3 Quick use...3 1. In order to make a link between an Excel file on your PC and an online file on EditGrid...3

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

Formatting Spreadsheets in Microsoft Excel

Formatting Spreadsheets in Microsoft Excel Formatting Spreadsheets in Microsoft Excel This document provides information regarding the formatting options available in Microsoft Excel 2010. Overview of Excel Microsoft Excel 2010 is a powerful tool

More information

Let s Review Lesson 2!

Let s Review Lesson 2! What is Technology Teachers and Discovering Why it so Important Computers in Integrating Technology and Education Today? Digital Media in the Classroom 5 th Edition Let s Review Lesson 2! Wheel of Terms

More information

Create an external reference (link) to a cell range in another workbook

Create an external reference (link) to a cell range in another workbook ProductsTemplatesStoreSupport My accountsign in Create an external reference (link) to a cell range in another workbook You can refer to the contents of cells in another workbook by creating an external

More information

User Defined Reports in ASCFA Version 5 Released on Feb 08

User Defined Reports in ASCFA Version 5 Released on Feb 08 This facility has been provided so that you can generate some ad-hoc reports which contain data primarily from the accounts master but is not related or does not follow any logic. Here we take a simple

More information

March 28, Excel Essentials. Jim Snediker. Suzi Huisman

March 28, Excel Essentials. Jim Snediker. Suzi Huisman March 28, 2019 Excel Essentials Jim Snediker Suzi Huisman 1 What is a Spreadsheet? A spreadsheet is the computer equivalent of a paper ledger sheet. Worksheet new name for Spreadsheet Workbook one file

More information

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7

Business Data Analysis MA0123. Dr Gavin Shaddick Department of Mathematical Sciences 4W 5.7 Business Data Analysis MA0123 Dr Gavin Shaddick Department of Mathematical Sciences g.shaddick@bath.ac.uk 4W 5.7 Lectures and computer labs Two lectures a week (Monday and Friday). One computing lab (time

More information

Unit 10: Data Structures CS 101, Fall 2018

Unit 10: Data Structures CS 101, Fall 2018 Unit 10: Data Structures CS 101, Fall 2018 Learning Objectives After completing this unit, you should be able to: Define and give everyday examples of arrays, stacks, queues, and trees. Explain what a

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Fall 2012 Fall 2012 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course revolves

More information

Print Meeting Vector Counts

Print Meeting Vector Counts Print Meeting Vector Counts This report provides a visual representation of class distribution for a specified semester based on class start time. Prepared by Client Support 632-9800 p. 1 Navigation: SBU

More information

Ms Excel Vba Continue Loop Through Range Of

Ms Excel Vba Continue Loop Through Range Of Ms Excel Vba Continue Loop Through Range Of Rows Learn how to make your VBA code dynamic by coding in a way that allows your 5 Different Ways to Find The Last Row or Last Column Using VBA In Microsoft

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Microsoft Excel Basics Ben Johnson

Microsoft Excel Basics Ben Johnson Microsoft Excel Basics Ben Johnson Topic...page # Basics...1 Workbook and worksheets...1 Sizing columns and rows...2 Auto Fill...2 Sort...2 Formatting Cells...3 Formulas...3 Percentage Button...4 Sum function...4

More information

Excel Boot Camp PIONEER TRAINING, INC.

Excel Boot Camp PIONEER TRAINING, INC. Excel Boot Camp Dates and Times: Cost: $250 1/22, 2-4 PM 1/29, 2-4 PM 2/5, 2-4 PM 2/12, 2-4 PM Please register online or call our office. (413) 387-1040 This consists of four-part class is aimed at students

More information

download instant at

download instant at CHAPTER 1 - LAB SESSION INTRODUCTION TO EXCEL INTRODUCTION: This lab session is designed to introduce you to the statistical aspects of Microsoft Excel. During this session you will learn how to enter

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

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 Simple Report from Excel

Creating Simple Report from Excel Creating Simple Report from Excel 1.1 Connect to Excel workbook 1. Select Get Data Excel in the Home ribbon tab, 2. In the Open File dialog box, select the 2015 Sales.xlsx file. Then in the Navigator pane,

More information

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software

1. Textbook #1: Our Digital World (ODW). 2. Textbook #2: Guidelines for Office 2013 (GFO). 3. SNAP: Assessment Software CIS - Survey of Computer Information Systems SPRING 014-16-Week Course Professor: JON P. RAGER Weekly Schedule Note: This schedule is subjected to BE CHANGED at your instructor's discretion. Please check

More information

Visual Streamline FAQ

Visual Streamline FAQ Visual Streamline FAQ How does the Template Import Work? The Template Import routine enables you to import new inventory items, as well as New Supplier List Records, and make changes to existing Inventory

More information

Moving and copying data

Moving and copying data L E S S O N 4 Moving and copying data Suggested teaching time 50-60 minutes Lesson objectives To be able to move and copy data, you will: a b c d e Insert rows and ranges by using shortcut menu choices.

More information

File Storage. This manual contains pertinent information about your File Storage space at SLC.

File Storage. This manual contains pertinent information about your File Storage space at SLC. File Storage This manual contains pertinent information about your File Storage space at SLC. June, 2017 About All students at SLC are provided with an allotment of secure storage space to save and store

More information

HOW TO LOGIN TO OFFICE 365 AND ACCESS ONEDRIVE. By Tess McKinney SCC HelpDesk

HOW TO LOGIN TO OFFICE 365 AND ACCESS ONEDRIVE. By Tess McKinney SCC HelpDesk HOW TO LOGIN TO OFFICE 365 AND ACCESS ONEDRIVE By Tess McKinney SCC HelpDesk 1 WHY DO YOU WANT TO USE OFFICE 365? Outlook email that is browser based and referred to as Outlook Web Access, (OWA) File storage

More information

Excel Functions & Tables

Excel Functions & Tables Excel Functions & Tables Fall 2014 Fall 2014 CS130 - Excel Functions & Tables 1 Review of Functions Quick Mathematics Review As it turns out, some of the most important mathematics for this course revolves

More information

Intermediate Microsoft Excel 2010

Intermediate Microsoft Excel 2010 P a g e 1 Intermediate Microsoft Excel 2010 ABOUT THIS CLASS This class is designed to continue where the Microsoft Excel 2010 Basics class left off. Specifically, we will cover additional ways to organize

More information

Beginning Excel. Revised 4/19/16

Beginning Excel. Revised 4/19/16 Beginning Excel Objectives: The Learner will: Become familiar with terminology used in Microsoft Excel Create a simple workbook Write a simple formula Formatting Cells Adding Columns Borders Table of Contents:

More information

Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013)

Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013) Excel Template Instructions for the Glo-Brite Payroll Project (Using Excel 2010 or 2013) T APPENDIX B he Excel template for the Payroll Project is an electronic version of the books of account and payroll

More information

Mathematics LBS 4. Spreadsheet Mathematics: Statistics and Graphing. Finding the Mean, Median, & Mode

Mathematics LBS 4. Spreadsheet Mathematics: Statistics and Graphing. Finding the Mean, Median, & Mode Mathematics LBS 4 Spreadsheet Mathematics: Statistics and Graphing Lab 2: Finding the Mean, Median, & Mode Microsoft Excel Logo and all screens captured by permission of Microsoft Goal To use Excel to

More information

Chart Wizard: Step 1 (Chart Types)

Chart Wizard: Step 1 (Chart Types) Chart Wizard: Step 1 (Chart Types) 1. Select the chart type you want to use. You can choose from either the Standard Types tab or the Custom Types tab. Click and hold the button labeled Press and hold

More information

Birst Pronto: Connect to Data in Pronto

Birst Pronto: Connect to Data in Pronto Posted by Dee Elling Jan 28, 2017 In the first installment of this series, Get Started, you saw the different pages in Pronto and how to navigate between them. Now let's get some data into Pronto so you

More information

CS1100: Excel Lab 1. Problem 1 (25 Points) Filtering and Summarizing Data

CS1100: Excel Lab 1. Problem 1 (25 Points) Filtering and Summarizing Data CS1100: Excel Lab 1 Filtering and Summarizing Data To complete this assignment you must submit an electronic copy to Blackboard by the due date. Use the data in the starter file. In this lab you are asked

More information