16 Spreadsheet
16 Spreadsheet
Chapter-16
SPREADSHEET
1. What is spread sheet?
➢ A spreadsheet is a software tool for entering, manipulating and analyzing sets of
number.
2. What is Workbook?
➢ A workbook is a multipage Excel document.
3. Define Cell.
➢ The intersection of rows and columns is called a cell.
4. What is cell address?
➢ Every cell is identified by unique address called cell address, which includes the
column alphabet followed by the row number.
Page 1 of 5
Trinity PU College, Mysuru Computer Science
DAY( ) – Returns day from the date . MONTH( ) – Returns month from the date
Syntax : =DAY(“MONTH-DAY-YEAR”) Syntax : =MONTH(“MONTH-DAY-
Example : =DAY(“01-26-2017”) YEAR”)
Ans : 26 Example : =MONTH(“01-26-2017”)
Ans : 01
YEAR( ) – Returns year from the date WEEKDAY ( ) – Returns Weekday from the
Syntax: =YEAR(“MONTH-DAY-YEAR”) date
Example: =YEAR(“01-26-2017”) Syntax: =WEEKDAY(“MONTH-DAY-
Ans : 2017 YEAR”)
Example: =WEEKDAY(“01-26-2017”)
Ans: 5
Page 2 of 5
Trinity PU College, Mysuru Computer Science
TODAY ( ) – Returns system date from the NOW ( ) – Returns System date and time
date from the date
Syntax: =TODAY( ) Syntax: =NOW( )
Example: =TODAY( ) Example: =NOW( )
Ans: 1/19/2017 Ans: 1/19/2017 10:08
DATE ( ) – Returns the serial number of the date or display the date in American format.
Syntax: =DATE(YEAR,MONTH,DAY)
Example: =DATE(2017,01,26)
Ans: 1/26/2017
ARITHMETIC FUNCTIONS
ABS ( ) SQRT ( )
Returns the absolute value of the number. Returns the square root of the number.
Number without a sign is called absolute Syntax : SQRT(NUMBER)
number. Example : =SQRT(100)
Syntax : ABS(NUMBER) Answer : 10
Example : =ABS(5 – 10)
Answer : 5
MOD ( ) PRODUCT ( )
Returns the remainder after number is This function multiplies all the numbers given
divided by divisor as arguments and returns the product
Syntax : MOD(NUMBER,DIVISOR) Syntax :
Example : =MOD(5,3) PRODUCT(NUMBER1,NUMBER2…..)
Answer : 2 Example : =PRODUCT(10,20)
Answer : 200
SUM ( )
Returns the sum of all the numbers in the list of
arguments
Syntax : SUM(NUMBER1,NUMBER2…..)
Example : =SUM(A1:A3)
Answer : 60
STATISTICAL FUNCTIONS
MAX( ) – MIN( ) –
Returns the Returns the
maximum value from minimum value
the range of cells from the range of
Syntax : MAX(RANGE) cells
Example : =MAX(A1:A3) Syntax : MIN(RANGE)
Answer : 30 Example : =MIN(A1:A3)
Answer : 10
Page 3 of 5
Trinity PU College, Mysuru Computer Science
AVERAGE( )
Returns the Average value from the range of cells
Syntax : AVERAGE(RANGE)
Example : =AVERAGE(A1:A3)
Answer : 30
LOGICAL FUNCTIONS:
AND( ) AND( )
This function returns TRUE if This function returns TRUE if all its arguments are TRUE,
all its arguments are TRUE, returns FALSE, if one or more
returns FALSE, if one or more arguments are FALSE.
arguments are FALSE. Syntax : AND(LOGICAL1,LOGICAL2…)
Syntax : LOGICAL1, LOGICAL2 are 1 to 30 conditions you want
AND(LOGICAL1,LOGICAL2 to test.
…) Example : =AND(10 > 5,8 >7)
LOGICAL1, LOGICAL2 are 1 Answer : TRUE
to 30 conditions you want to
test.
Example : =AND(10 > 5,8 >7)
Answer : TRUE
NOT( ) IF( )
This function returns the value When the logical_test is true, then it returns value-if-true
of its argument. otherwise value-if-false.
Syntax : NOT(LOGICAL) Syntax:
Example : =NOT(10 > 5) IF(LOGICAL_TEST,VALUE_IF_TRUE,VALUE_IF_FA
Answer : FALSE LSE)
Example : =IF(A2>35,”PASS”,”FAIL”)
Answer : FAIL
FINANCIAL FUNCTIONS:
1. RATE( )
Returns the interest rate for an annuity.
Syntax: RATE( Number_Payments, Payment, PV [FV], [Type], [Estimate])
Number_Payments is the number of payments for the annuity.
Payment is the amount of the payment made each period.
PV is the Present Value.
FV is optional. It is the Future Value.
Type is Optional. It indicates when the payments are due.
2. PMT( )
Returns the payment for a loan based on constant amount and a fixed interest.
Page 4 of 5
Trinity PU College, Mysuru Computer Science
Syntax: PMT(RATE,NPER,PV,FV,TYPE)
RATE – Is the interest rate per period.
NPER - Is the total number of payments, periods in an annuity.
PV – Is the loan amount
Example: = PMT(B1/12,B2*12,B3,0,1)
Ans : 3,288.55
3. FV( )
Returns the future value of an investment based on periodic, constant payments and a
constant
interest.
Syntax: FV(RATE,NPER,PMT,FV,TYPE)
RATE – Is the interest rate per period.
NPER - Is the total number of payments, periods in an annuity.
PMT – Is the payment made each period, includes principal amount, interest amount.
Example: = FV(B1/12,B2*12,B3,0,1)
Ans : 43,507.65
Page 5 of 5