CHAPTER 16 - Spreadsheets
CHAPTER 16 - Spreadsheets
CHAPTER 16 – SPREADSHEET
1. What is Spreadsheet?
ANS: A spreadsheet is a software tool for entering, manipulating and analyzing sets of number.
2. What is Workbook?
ANS: A workbook is a multipage Excel document.
3. Define Cell.
ANS: The intersection of rows and columns is called a cell.
1|Page
CS NOTES
i) Shortcut menus
• Commands appropriate to the task that you are doing by clicking the right mouse button.
7. 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/20
ARITHMETIC FUNCTIONS
1. ABS ( )
Returns the absolute value of the number.
Number without a sign is called absolute number.
Syntax : ABS(NUMBER)
2|Page
CS NOTES
2. SQRT ( )
Returns the square root of the number.
Syntax : SQRT(NUMBER)
Example : =SQRT(100)
Answer : 10
3. MOD ( )
Returns the remainder after number is divided by divisor
Syntax : MOD(NUMBER,DIVISOR)
Example : =MOD(5,3) Answer : 2
4. PRODUCT ( )
• This function multiplies all the numbers given as arguments and returns the product Syntax :
PRODUCT(NUMBER1,NUMBER2.....) Example : =PRODUCT(10,20)
Answer : 200
5. 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
1. MAX( ) –
• Returns the maximum value from the range of cells
Syntax : MAX(RANGE)
Example : =MAX(A1:A3)
MIN( ) –
• Returns the minimum value from the range of cells
• Syntax : MIN(RANGE)
• Example : =MIN(A1:A3)
AVERAGE( )
• Returns the Average value from the range of cells
• Syntax : AVERAGE(RANGE)
• Example : =AVERAGE(A1:A3)
LOGICAL FUNCTIONS:
1. AND( )
• This function returns TRUE if all its arguments are TRUE, returns FALSE, if one or more
3|Page
CS NOTES
2. OR( )
• This function returns TRUE if one or more arguments are TRUE, returns FALSE, if all
arguments are FALSE.
• Syntax : OR(LOGICAL1,LOGICAL2...)
• LOGICAL1, LOGICAL2 are 1 to 30 conditions you want to test.
3. NOT( )
• This function returns the value of its argument.
• Syntax : NOT(LOGICAL)
• Example : =NOT(10 > 5)
• Answer : FALSE
• Example : =NOT(8 < 7)
• Answer : TRUE
4. IF( )
• When the logical_test is true, then it returns value-if-true otherwise value-if-false.
• Syntax: IF(LOGICAL_TEST,VALUE_IF_TRUE,VALUE_IF_FALSE)
• Example : =IF(A2>35,”PASS”,”FAIL”)
• Answer : FAIL
AB
1 PER CLASS
2 34 =IF(A2>35,”PASS”,”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.
4|Page
CS NOTES
2. PMT( )
• Returns the payment for a loan based on constant amount and a fixed interest.
• 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
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
MACROS
1. What is a Macro?
Macro is a small program that carries out pre-defined and pre-recorded series of steps by
giving a few keyboard shortcuts or by running the macro name.
5|Page
CS NOTES
6. Functions of DATA->FORM
ANS:
a. Displays one record at a time
b. Allow you to add new records and edit existing records
c. Allow you to view records matching the specified criteria.
7. What is Chart?
ANS: Chart is a pictorial or graphical representation of numeric data.
6|Page
CS NOTES
7|Page