Open Office Calc Session 03 Math and Text Functions.

Slides:



Advertisements
Similar presentations
Excel The purpose of a spreadsheet is to solve problems involving numbers. A worksheet consists of columns and rows that intersect to form cells. Each.
Advertisements

MS-Excel XP Lesson 5. Exponentiation 1.A1  2 A2  3 A3  =A1^A2 B1  =2^4 2.^ for exponentiation.
Maths & Trig, Statistical functions. ABS Returns the absolute value of a number The absolute value of a number is the number without its sign Syntax ◦
Computer Science & Engineering 2111 Text Functions 1CSE 2111 Lecture-Text Functions.
Loading Excel Double click the Excel icon on the desktop (if you have this) OR Click on Start All Programs Microsoft Office Microsoft Office Excel 2003.
Excel Chapter 6 Review slides. How many worksheets are in a workbook, by default? three.
Statistical Analysis with Excel
COMPREHENSIVE Excel Tutorial 2 Formatting a Workbook.
FIRST COURSE Excel Lecture. XP 2 Introducing Excel Microsoft Office Excel 2007 (or Excel) is a computer program used to enter, analyze, and present quantitative.
Click here to start round 2! You Should Know Access FunctionsSay.
Ping Zhang 10/08/2010.  You can get data from the user (input) and display information to the user (output).  However, you must include the library.
Input and Output in Console Mode UNIVERSITY OF THE PUNJAB (GUJRANWALA CAMPUS) ADNAN BABAR MT14028 CR
Lesson 5 MICROSOFT EXCEL PART 2 by Nguyễn Thanh Tùng Web:
Chapter 5 Basic Functions Copyright 2005 Radian Publishing Co.
05/09/2015SJF L31 F21SF Software Engineering Foundations Formatting Converting numbers to Strings and vice versa Monica Farrow EM G30
Lesson 1 – Microsoft Excel The goal of this lesson is for students to successfully explore and describe the Excel window and to create a new worksheet.
Syntax MROUND(number,multiple) Number is the value to round. Multiple is the multiple to which you want to round number. Remark MROUND rounds up, away.
Using Excel Biostatistics 212 Lecture 4. Housekeeping Questions about Lab 3? Final Project Dataset! –Check in.
Intro to Excel - Session 2.21 Tutorial 2 - Session 2.2 Creating a Worksheet.
 Introduction to MS-Excel Introduction to MS-Excel  Entering data in EXCEL Entering data in EXCEL  Formulas & Functions in EXCEL Formulas & Functions.
Microsoft ® Excel ® © 2011 Project Lead The Way, Inc.Aerospace Engineering.
Statistical Analysis with Excel (PREVIEW). Spreadsheet Programs First developed in 70s –VisiCalc Dan Bricklin and Bob Frankston –Operated on Apple II.
Excel at Excel Computer Literacy What is Excel? We use Excel for: Organizing data Making calculations Making sense of data Charting data Sharing.
® Microsoft Office 2010 Excel Tutorial 2: Formatting a Workbook.
Pascal Programming Strings, Arithmetic operators and output formatting National Certificate – Unit 4 Carl Smith.
Cell Alignment By default, text is left aligned and values are right aligned. You can also adjust vertical alignment.
Introducing Python CS 4320, SPRING Format: Field widths and Alignment The string representation of a value can be padded out to a specific width.
Advanced Word - Lesson 1: Sorting and Calculating.
Excel Project 2 Formulas, Functions, and Formatting.
MS-Excel XP Lesson 6. NOW Function 1.Returns the current date and time formatted as a date and time. 2.A1  =NOW() 3.A2  Select Insert menu Select Function.
Information Processing Notes for beginning our Excel Unit.
Functions. Types of Functions Built-in functions: –Financial –Date & time –Math & statistical –Database –Lookup –Logical –Information:IsBlank, IsNumber,
Lesson 1 – Microsoft Excel * The goal of this lesson is for students to successfully explore and describe the Excel window and to create a new worksheet.
IENG 423 Design of Decision Support Systems Modeling with Excel Excel Basics More on Functions, trouble shooting formulas.
String Manipulation By Felix Thompson, Jerzy Griffiths and Joel Sutcliffe.
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.
Microsoft Word Notes. Justified To justify your typing: –Highlight the information –Choose format –Paragraph –Use the dropdown menu next to alignment.
Understanding Microsoft Excel Lesson 1 – Microsoft Excel 2013.
CIS 100 Test #2 Review 1. EXCEL Functions on Test  SUM, COUNT, COUNTA, MAX, MIN, MEDIAN, MODE, AVERAGE, ROUND, and IF  Possibly Others 
MODULE 4.1: INTRODUCTION TO SPREADSHEETS. CONTENTS What is a spreadsheet? Basic functions Inputting data Use of formatting More about different types.
Excel 2007 ® Business and Personal Finances How can Excel 2007 help you format a workbook?
Statistical Analysis with Excel © 2012 Project Lead The Way, Inc.Introduction to Engineering Design.
Open Office Writer Section 01 - Formatting Document Prepared by: IT Group.
Open Office Writer Session 03 - Paragraph Problem
Understanding Microsoft Excel
TRACKER Contents Intro Excel 101 Math Operations Formulas 101.
Excel Functions.
Excel Chapter 1 Review Slides
Created by Stacey Wilson
Loops BIS1523 – Lecture 10.
Microsoft Excel.
Statistical Analysis with Excel
Objectives Format text, numbers, and dates
Microsoft Excel A Spreadsheet Program.
Open Office Writer Session 04 Formatting Column Insert Picture - FontWork Prepared by: IT group.
Statistics and Spreadsheet Functions
Open Office Calc Session 01 Class Management Report
Unit 42 : Spreadsheet Modelling
Excel 1 Microsoft Office 2013.
Statistical Analysis with Excel
Statistical Analysis with Excel
AOSS _ Course material AOSS Master training workshop Singapore 2007
Do you know what these buttons do?
REACH Computer Resource Center
Practice Activity – Part 1
Microsoft Excel chapters 1 & 2
Do you know what these buttons do?
Microsoft Excel Done by : Suaad Mohamed.
Performing Calculations on Data
REACH Computer Resource Center
Presentation transcript:

Open Office Calc Session 03 Math and Text Functions

Contents 1.The Paradise Hotel Cost Problem 2.Solution 3.Other Requirements

1. The Paradise Hotel Cost Problem Create an Open Office Calc file named ParadiseHotelCost.ods and then input data as shown in the following table:

Format the worksheet appropriately Enter the appropriate function in column F to compute the number of Weeks. Similarly, compute the number of remaining Days in column G. The Total Cost is calculated by adding cost in weeks, cost in days and services. Round the Total Cost numbers to three decimal places to the left of the decimal point. The Total in cell I15 is the sum of all numbers in the Total Cost column.

2. Solution 2.1. Create the Worksheet Format the Worksheet Calculate Number of Weeks 2.4. Calculate Number of Days 2.5. Calculate the Total Cost 2.6. Round the Total Cost 2.7. Calculate the Total

2.1. Create the Worksheet Create an Open Office Calc file named: ParadiseHotelCost.ods Input the raw data

2.2. Format the Worksheet Change the background color for the range A1:I5 to Light Blue. Align Centered for column headers. Apply Borders for the range A5:I13

2.3. Calculate Number of Weeks INT Function rounds a number down to the nearest integer. − Syntax: INT(number)‏ =INT((E6-D6)/7)‏

2.4. Calculate Number of Days MOD function returns the remainder after number is divided by divisor. - Syntax: MOD(Dividend; Divisor)‏ =MOD((E6-D6); 7)‏

2.5. Calculate the Total Cost = F6*$H$4+G6*$I$4+H6

2.6. Round the Total Cost ROUND function rounds a number to a certain number of decimal places. - Syntax: ROUND(number; count)‏ = ROUND(F6*$H$4+G6*$I$4+H6; -3)‏

2.7. Calculate the Total = SUM(I6:I13)‏ SUM function adds all the numbers in a range of cells – Syntax: SUM(number1; number 2;...)‏ or SUM(range)‏

3. Other Requirements Insert three columns between C and D. Type Floor, Room and Room Type as column headers. In the column of Floor, enter a function to get the floor based on the first letter of the Room ID. Similarly, use the appropriate functions to input the room number based on numbers in the middle of Room ID. Finally, enter a function to input the Room Type based on the last letter of the Room ID (the character D stands for double room and the character S is single room)..

Solution 3.1. Insert New Columns 3.2. Get the Floor 3.3. Get the Room Number 3.4. Get the Room Type

3.1. Insert New Columns

3.2. Get the Floor LEFT function returns the first character or characters of a text, based on the number of characters you specify. - Syntax: LEFT(text; number)‏ = LEFT(C6; 1)‏

3.3. Get the Room Number MID function returns a specific number of characters from a text, based on starting position and the number of characters you specify. - Syntax: MID(text; start; number)‏ LEN function returns the length of a string including spaces. - Syntax: LEN(text)

= MID(C6; 2; LEN(C6) - 2)‏

3.4. Get the Room Type RIGHT function returns the last character or characters of a text. - Syntax: RIGHT(text; number) =RIGHT(C3;1)‏

Q&A