SlideShare ist ein Scribd-Unternehmen logo
1 von 36
Session10
 Define a Formula
 Explain the procedure of Including Functions
 Explain the use of AutoSum function

 Explain the use of Conditional Formatting
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 2
 One of the most powerful features in Excel is the ability
to calculate numerical information using formulas.
 Just like a calculator, Excel can add, subtract, multiply, and
divide.
 In this session, we'll show you how to use cell references to
create simple formulas.
 Excel uses standard operators for formulas, such as a plus
sign for addition (+), a minus sign for subtraction (-),
an asterisk for multiplication (*), a forward slash for division (/),
and a caret (^) for exponents.
3Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
4Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
All formulas in Excel must begin with an equals sign (=). This is
because the cell contains, or is equal to, the formula and the
value it calculates.
5Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
 While you can create simple formulas in Excel manually (for
example, =2+2 or =5*5), most of the time you will use cell
addresses to create a formula.
 This is known as making a cell reference.
 Using cell references will ensure that your formulas are always
accurate because you can change the value of referenced cells
without having to rewrite the formula.
6Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
 By combining a mathematical operator with cell references, you can
create a variety of simple formulas in Excel.
 Formulas can also include a combination of cell references and
numbers, as in the examples below:
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 7
8
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
 we'll use a simple formula and cell references to calculate a
budget.
◦ Select the cell that will contain the formula. In our example, we'll select
cell B3.
◦ Type the equals sign (=). Notice how it appears in both the cell and
the formula bar.
9
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
◦ Type the cell address of the cell you want to reference first in the formula:
cell B1 in our example. A blue border will appear around the referenced
cell.
◦ Type the mathematical operator you want to use. In our example, we'll
type the addition sign (+).
◦ Type the cell address of the cell you want to reference second in the
formula: cell B2 in our example. A red border will appear around the
referenced cell.
10
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
◦ Press Enter on your keyboard. The formula will be calculated, and
the value will be displayed in the cell.
11
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
 There may be times when you need to copy the content of one cell
to several other cells in your worksheet.
 You could copy and paste the content into each cell, but this
method would be time consuming.
 Instead, you can use the Autofill to quickly copy and paste content
to adjacent cells in the same row or column.
1. Select the cell(s) containing the content you want to use. The fill handle will appear
as a small square in the bottom-right corner of the selected cell(s).
2. Click, hold, and drag the fill handle until all of the cells you want to fill are selected.
3. Release the mouse to fill the selected cells.
12
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
1 2
3
 Common uses of functions are to calculate the sum, find the maximum
and minimum value, count the number of entries, and calculate the
average value from a range of data
 Consist of two parts namely, the function name and the cell address
 The cell address is used by functions to derive a result
 Can use a single argument, a fixed number of arguments, an
indeterminate number of arguments, or an optional argument
 Uses more than one argument, separates the arguments with a comma
 Can also use the AutoSum feature of Excel to perform quick calculation
such as finding the Sum, Average and so on
 Excel has a large library of function with more than 3000 functions,
which have been grouped into different categories
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 13
 To illustrate Excel's most popular financial functions, we consider
a loan with monthly payments, an annual interest rate of 6%, a 20-
year duration, a present value of $150,000 (amount borrowed) and a
future value of 0 (that's what you hope to achieve when you pay off a
loan).
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 14
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 15
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 16
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 17
Function Syntax Description Example
NOMINAL(effect_rate, npery) Returns the nominal annual
interest rate based on the given
rate and number of
compounding periods per year
1. Type the following in cell A1 and A2 in
a worksheet:
Effective Interest Rate
Number of Compounding
Periods Per Year
2. Type the following in cell B1 and B2:
6.25%
4
3. Select cell B4.
4. Select NOMINAL.
5. Type B1 and B2 in each of the text
boxes in the dialog box.
6. Click OK. 0.061086 is displayed on
the worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 18
Function Syntax Description Example
AND(logical1, logical2) Checks whether all the
arguments are TRUE and it
returns TRUE only if all the
arguments are TRUE
1. Select AND.
2. Type 4*3=12 in the Logical1 text
box.
3. Type 7*2=14 in the Logical2 text box.
4. Click OK. TRUE is displayed on the
worksheet.
IF(logical_test, value_if_true,
value_if_false)
Checks whether the condition
is TRUE, returns a value if the
condition is true and returns
another value if the condition is
FALSE
1. Type 100 in A1.
2. Select cell A2.
3. Select IF.
4. Type the following text in each of the
text boxes.
A1<=50
Conveyance will be given
Conveyance will not be
given
5. Click OK. Conveyance will not be given
is displayed on the worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 19
Function Syntax Description Example
LOWER(text) Transforms the letters in the
text string to lower case
=LOWER("OFFICE 2010")
Will display office 2010 in the worksheet
DOLLAR(number,[decimal]) Changes a number to text using
currency format
=DOLLAR(452, 3)
Will display $452.000 in the worksheet
EXACT(text1,text2) Examines whether two texts
are exactly same (case-
sensitive) and returns the value
of TRUE or FALSE
=EXACT("Hello", "hello")
Will display FALSE in the worksheet
FIXED(number,[decimal],[no_co
mmas])
Rounds off the number to
specified decimal places and
displays the number with or
without the commas
=FIXED(5443.295,1,TRUE)
Will display 5443.3 in the worksheet
PROPER(text) Capitalizes the first letter in the
word and letter after special
character, and lowers the case
of all the other letters in the
word
=PROPER("mY friend’s
book")
Will display My Friend’S Book in the
worksheet
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 20
Function Syntax Description Example
REPLACE(old_text,start_n
um,num_chars,new_text)
Replaces old text with a new text
string
=REPLACE("Hello",1,2,"A")
Will display Allo in the worksheet
REPEAT(text,number_tim
es)
Prints text the number of times
specified
=REPT("1#A",3)
Will display 1#A1#A1#A in the
worksheet
SEARCH(find_text,within
_text,[start_num])
Returns the location of the character
from within a string starting from left
to right, considering the starting
number of the text in the string
=SEARCH("A","Apache",2)
Will display 3 in the worksheet
SUBSTITUTE(text,old_text
,new_text,[instance_num
ber])
Replaces the old text with the new
text. You can also specify the instance
position of the text in the string that is
required to be replaced
=SUBSTITUTE("December 1,
2011",1,2,3)
Will display December 1, 2012 in
the worksheet
T(value) Returns text if the value referred is
text else returns blank if the value
referred is numerical or logical
=T(“Office”)
Will display Office in the worksheet
TRIM(text) Removes all the extra spaces in the
string but preserves the single spacing
in between words
=TRIM("Microsoft
Excel")
Will display Microsoft Excel in the
worksheet
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 21
Function Syntax Description Example
DATEVALUE(date_text) Transforms the date in into
serial number that represents
date in Microsoft Excel date-
time code
=DATEVALUE("12/12/2012
")
Will display 41255 in the
worksheet
DAYS360(start_date,end_date,[
method])
Returns the numbers of days
between two dates based on a
360-days year
=DAYS360("1/1/2011","5
/1/2011")
Will display 120 in the
worksheet
WEEKNUM(serial_number,
[return_type])
Returns the week number of
the year
=WEEKNUM("7/1/2011",1)
Will display 27 in the worksheet
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 22
Function Syntax Description Example
HYPERLINK(http_location,
[friendly_name])
Creates a shortcut or jump that
opens a document stored on a
network server, an intranet, or
the Internet
1. Select HYPERLINK.
2. Type http://google.com
in Link_location box.
3. Type Google in the Friendly_name text box.
4. Click OK. Google is displayed in the worksheet.
LOOKUP() Looks up value from one-row
or one-column range, or from
an array
1. Type the following data in cells from A1 to A5 in a
worksheet:
Alison
Martha
Peter
Ricky
Ted
2. Type the following data in cells from B1 to B5:
$56
$68
$80
$93
$86
3. Select cell A7.
4. Select LOOKUP.
5. Select OK.
6. Type the following in the text boxes of the dialog box:
A3
A1:A5
B1:B5
7. Click OK. 80 is displayed in the worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 23
Function Syntax Description Example
COMBIN(number,
number_chosen)
Returns the number of
combinations for a given
number of items
=COMBIN(6,2)
Will display 15 in the worksheet
GCD(number1,number2,…) Returns the greatest common
divisor of more than one
=GCD(3,17)
Will display 1 in the worksheet
LCM(number1,number2,…) Returns the least common
multiple
=LCM(6,9)
Will display 18 in the worksheet
LOG(number,base value) Returns the log of the number
depending upon the base value
specified
=LOG(9,2)
Will display 3.169925001 in the
worksheet
PI() Returns the PI value =PI()
Will display 3.141592654 in the
worksheet
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 24
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 25
Function Syntax Description Example
CONFIDENCE(alpha,
standard_dev, size)
Returns a confidence interval
for a population mean
1. Type 0.05 in A1.
2. Type 3.5 in A2.
3. Type 100 in A3.
4. Select CONFIDENCE.
5. Type the following the text boxes of
the dialog box:
A1
A2
A3
6. Click OK. 0.685987395 is displayed
in the worksheet.
FISHER(x) Returns the Fisher
transformation
1. Type -0.5 in A1.
2. Click cell A2.
3. Select FISHER.
4. Type A1 in the X box.
5. Click OK. -0.549306144 is displayed
in the worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 26
Function Syntax Description Example
PEARSON(array1, array2) Returns the Pearson product
moment correlation co-
efficient (r)
1. Type the following from cell A1 to A5:
3
4
1
2
5
2. Type the following from cell B1 to B5:
2
5
4
3
1
3. Select PEARSON.
4. Type the following in the text boxes of
the dialog box:
A1:A5
B1:B5
5. Click OK. -0.4 is displayed on the
worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 27
Function Syntax Description Example
BIN2DEC(number) Converts the binary number to
a decimal number
1. Type 110010 in A1.
2. Click cell A2.
3. Select BIN2DEC.
4. Type A1 in the Number text box.
5. Click OK. 50 is displayed in the
worksheet.
DELTA(number1, number2) Tests whether two numbers are
equal
1. Select DELTA.
2. Type 5678754335 in the Number1
box.
3. Type 5678745335 in the Number2
box.
4. Click OK. 0 is displayed in the
worksheet.
IMREAL(inumber) Returns the real co-efficient of
a complex number
1. Select IMREAL.
2. Type 6+i7 in the text box of the
dialog box.
3. Click OK. 6 is displayed in the
worksheet.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 28
Function Syntax Description Example
INFO(type_text) Returns the information about
the current operating
environment
1. Select INFO.
2. Type system in the Type_text text box.
3. Click OK. pcdos is displayed on the
worksheet.
ISTEXT(value) Checks whether the value is
text and returns TRUE or FALSE
1. Type Excel in A1.
2. Select ISTEXT.
3. Type A1 in the Value text box.
4. Click OK. True is displayed in the
worksheet.
 Much of the time, people use Excel to sum columns and rows of data.
 Auto Sum saves your time in creating basic formulas.
 To use Auto Sum
◦ . Select the cell that is located the end of the column or row that you want to add, and
then click the “AutoSum” button in the “Function Library” group on the “Formulas” tab
in the Ribbon
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 29
 Conditional formatting allows you to automatically apply formatting—such
as colors, icons, and data bars—to one or more cells based on the cell value.
 For example, a conditional formatting rule might be: If the value is less than
$2000, color the cell red.
 By applying this rule, you'd be able to quickly see which cells contain values
less than $2000.
Aptech Computer Education
Presented by: Muhammad
Ehtisham Siddiqui 30
 To create a conditional formatting rule:
◦ Select the desired cells for the conditional formatting rule.
Aptech Computer Education
Presented by: Muhammad
Ehtisham Siddiqui 31
 From the Home tab, click the Conditional Formatting command. A drop-down menu will
appear.
 Hover the mouse over the desired conditional formatting type, then select the desired
rule from the menu that appears. In our example, we want to highlight cells that
are greater than $4000.
Aptech Computer Education
Presented by: Muhammad
Ehtisham Siddiqui 32
 A dialog box will appear. Enter the desired value(s) into the blank field. In our example,
we'll enter 4000 as our value.
 Select a formatting style from the drop-down menu. In our example, we'll choose Green
Fill with Dark Green Text, then click OK.
 The conditional formatting will be applied to the selected cells. In our example, it's easy
to see which salespeople reached the $4000 sales goal for each month.
 The conditional formatting will be applied to the selected cells. In our example, it's easy
to see which salespeople reached the $4000 sales goal for each month.
Aptech Computer Education
Presented by: Muhammad
Ehtisham Siddiqui 33
Aptech Computer Education
Presented by: Muhammad
Ehtisham Siddiqui 34
 You can apply multiple conditional formatting rules to a cell range or
worksheet, allowing you to visualize different trends and patterns in your
data.
Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 35
36

Weitere ähnliche Inhalte

Was ist angesagt?

Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007
simply_coool
 
Using The Function In Excel 3
Using The Function In Excel 3Using The Function In Excel 3
Using The Function In Excel 3
norzaini
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
Buffalo Seminary
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
wildman099
 
Ms excel and it’s function
Ms excel and it’s functionMs excel and it’s function
Ms excel and it’s function
sneha94
 

Was ist angesagt? (20)

functions_in_microsoft_excel_2003
 functions_in_microsoft_excel_2003 functions_in_microsoft_excel_2003
functions_in_microsoft_excel_2003
 
Excel Formulas Functions 2007
Excel Formulas Functions 2007Excel Formulas Functions 2007
Excel Formulas Functions 2007
 
Grade 5 Computer
Grade 5 ComputerGrade 5 Computer
Grade 5 Computer
 
Grade 6 Computer
Grade 6 Computer Grade 6 Computer
Grade 6 Computer
 
Microsoft excel 2010 useful formula & functions
Microsoft excel 2010   useful formula & functionsMicrosoft excel 2010   useful formula & functions
Microsoft excel 2010 useful formula & functions
 
Real World Excel Formulas
Real World Excel FormulasReal World Excel Formulas
Real World Excel Formulas
 
Entering Data - Excel 2013 Tutorial
Entering Data - Excel 2013 TutorialEntering Data - Excel 2013 Tutorial
Entering Data - Excel 2013 Tutorial
 
Basic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 TutorialBasic Functions - Excel 2013 Tutorial
Basic Functions - Excel 2013 Tutorial
 
Top 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must knowTop 20 microsoft excel formulas you must know
Top 20 microsoft excel formulas you must know
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Management productivity tools1
Management productivity tools1Management productivity tools1
Management productivity tools1
 
Office productivity tools
Office productivity toolsOffice productivity tools
Office productivity tools
 
Using The Function In Excel 3
Using The Function In Excel 3Using The Function In Excel 3
Using The Function In Excel 3
 
Formulas and functions
Formulas and functions Formulas and functions
Formulas and functions
 
Ms excel 2013 data management
Ms excel 2013 data managementMs excel 2013 data management
Ms excel 2013 data management
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
AutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 TutorialAutoCorrect - Excel 2013 Tutorial
AutoCorrect - Excel 2013 Tutorial
 
Ms excel and it’s function
Ms excel and it’s functionMs excel and it’s function
Ms excel and it’s function
 
Excel trick
Excel trickExcel trick
Excel trick
 

Ähnlich wie Office session10

ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
DishantGola
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
klivsie
 
Lesson5 creating simple formula
Lesson5 creating simple formulaLesson5 creating simple formula
Lesson5 creating simple formula
guevarra_2000
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functions
ricsanmae
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
macrob14
 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
dpd
 

Ähnlich wie Office session10 (20)

ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptxROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
ROLL NO 1 TO 9(G1) USE OF EXCEL IN CA PROFESSION (Final Draft).pptx
 
Chapter.05
Chapter.05Chapter.05
Chapter.05
 
G10 Unit 4.pptx
G10 Unit 4.pptxG10 Unit 4.pptx
G10 Unit 4.pptx
 
Microsoft Excel Advanced Features
Microsoft Excel Advanced FeaturesMicrosoft Excel Advanced Features
Microsoft Excel Advanced Features
 
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & FormulaesE-Book 25 Tips and Tricks MS Excel Functions & Formulaes
E-Book 25 Tips and Tricks MS Excel Functions & Formulaes
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Office session9
Office session9Office session9
Office session9
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Excel tips and tricks you should try
Excel tips and tricks you should tryExcel tips and tricks you should try
Excel tips and tricks you should try
 
Lesson5 creating simple formula
Lesson5 creating simple formulaLesson5 creating simple formula
Lesson5 creating simple formula
 
Introduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.pptIntroduction to micro soft Training ms Excel.ppt
Introduction to micro soft Training ms Excel.ppt
 
Simple formulas excel
Simple formulas excelSimple formulas excel
Simple formulas excel
 
Print5
Print5Print5
Print5
 
Chapter 16-spreadsheet1 questions and answer
Chapter 16-spreadsheet1  questions and answerChapter 16-spreadsheet1  questions and answer
Chapter 16-spreadsheet1 questions and answer
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
Lesson9 working with basic functions
Lesson9 working with basic functionsLesson9 working with basic functions
Lesson9 working with basic functions
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
 
Excel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a WorksheetExcel Chapter 2 - Inserting Formulas in a Worksheet
Excel Chapter 2 - Inserting Formulas in a Worksheet
 
Ms Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptxMs Excel- Its uses & Functions.pptx
Ms Excel- Its uses & Functions.pptx
 
Ba accounting skills lecture 1
Ba accounting skills lecture 1Ba accounting skills lecture 1
Ba accounting skills lecture 1
 

Mehr von Muhammad Ehtisham Siddiqui

Mehr von Muhammad Ehtisham Siddiqui (20)

C programming Tutorial Session 4
C programming Tutorial Session 4C programming Tutorial Session 4
C programming Tutorial Session 4
 
C programming Tutorial Session 4
C programming Tutorial Session 4C programming Tutorial Session 4
C programming Tutorial Session 4
 
C programming Tutorial Session 3
C programming Tutorial Session 3C programming Tutorial Session 3
C programming Tutorial Session 3
 
C programming Tutorial Session 2
C programming Tutorial Session 2C programming Tutorial Session 2
C programming Tutorial Session 2
 
C programming Tutorial Session 1
C programming Tutorial Session 1C programming Tutorial Session 1
C programming Tutorial Session 1
 
HTML5 Web storage
HTML5 Web storageHTML5 Web storage
HTML5 Web storage
 
J Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham SiddiquiJ Query (Complete Course) by Muhammad Ehtisham Siddiqui
J Query (Complete Course) by Muhammad Ehtisham Siddiqui
 
JavaScript Session 2
JavaScript Session 2JavaScript Session 2
JavaScript Session 2
 
JavaScript Session 3
JavaScript Session 3JavaScript Session 3
JavaScript Session 3
 
Javascript session 1
Javascript session 1Javascript session 1
Javascript session 1
 
Html audio video
Html audio videoHtml audio video
Html audio video
 
Html 5 geolocation api
Html 5 geolocation api Html 5 geolocation api
Html 5 geolocation api
 
Buiding Next Generation Websites Session 8 by Muhammad Ehtisham Siddiqui
Buiding Next Generation Websites Session 8 by Muhammad Ehtisham SiddiquiBuiding Next Generation Websites Session 8 by Muhammad Ehtisham Siddiqui
Buiding Next Generation Websites Session 8 by Muhammad Ehtisham Siddiqui
 
Building Next Generation Websites Session 7 by Muhammad Ehtisham Siddiqui
Building Next Generation  Websites Session 7 by Muhammad Ehtisham SiddiquiBuilding Next Generation  Websites Session 7 by Muhammad Ehtisham Siddiqui
Building Next Generation Websites Session 7 by Muhammad Ehtisham Siddiqui
 
Building Next Generation Websites Session 6 by Muhammad Ehtisham Siddiqui
Building Next Generation Websites Session 6 by Muhammad Ehtisham SiddiquiBuilding Next Generation Websites Session 6 by Muhammad Ehtisham Siddiqui
Building Next Generation Websites Session 6 by Muhammad Ehtisham Siddiqui
 
Building Next Generation Websites by Muhammad Ehtisham Siddiqui
Building Next Generation Websites by Muhammad Ehtisham SiddiquiBuilding Next Generation Websites by Muhammad Ehtisham Siddiqui
Building Next Generation Websites by Muhammad Ehtisham Siddiqui
 
Building Next Generation Websites Session6
Building Next Generation Websites Session6Building Next Generation Websites Session6
Building Next Generation Websites Session6
 
Building Next Generation Websites Session5
Building Next Generation Websites Session5Building Next Generation Websites Session5
Building Next Generation Websites Session5
 
Building Next Generation Websites Session4
Building Next Generation Websites Session4Building Next Generation Websites Session4
Building Next Generation Websites Session4
 
Session4
Session4Session4
Session4
 

Kürzlich hochgeladen

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Kürzlich hochgeladen (20)

Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

Office session10

  • 2.  Define a Formula  Explain the procedure of Including Functions  Explain the use of AutoSum function   Explain the use of Conditional Formatting Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 2
  • 3.  One of the most powerful features in Excel is the ability to calculate numerical information using formulas.  Just like a calculator, Excel can add, subtract, multiply, and divide.  In this session, we'll show you how to use cell references to create simple formulas.  Excel uses standard operators for formulas, such as a plus sign for addition (+), a minus sign for subtraction (-), an asterisk for multiplication (*), a forward slash for division (/), and a caret (^) for exponents. 3Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
  • 4. 4Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui All formulas in Excel must begin with an equals sign (=). This is because the cell contains, or is equal to, the formula and the value it calculates.
  • 5. 5Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui  While you can create simple formulas in Excel manually (for example, =2+2 or =5*5), most of the time you will use cell addresses to create a formula.  This is known as making a cell reference.  Using cell references will ensure that your formulas are always accurate because you can change the value of referenced cells without having to rewrite the formula.
  • 6. 6Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui
  • 7.  By combining a mathematical operator with cell references, you can create a variety of simple formulas in Excel.  Formulas can also include a combination of cell references and numbers, as in the examples below: Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 7
  • 8. 8 Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui  we'll use a simple formula and cell references to calculate a budget. ◦ Select the cell that will contain the formula. In our example, we'll select cell B3. ◦ Type the equals sign (=). Notice how it appears in both the cell and the formula bar.
  • 9. 9 Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui ◦ Type the cell address of the cell you want to reference first in the formula: cell B1 in our example. A blue border will appear around the referenced cell. ◦ Type the mathematical operator you want to use. In our example, we'll type the addition sign (+). ◦ Type the cell address of the cell you want to reference second in the formula: cell B2 in our example. A red border will appear around the referenced cell.
  • 10. 10 Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui ◦ Press Enter on your keyboard. The formula will be calculated, and the value will be displayed in the cell.
  • 11. 11 Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui  There may be times when you need to copy the content of one cell to several other cells in your worksheet.  You could copy and paste the content into each cell, but this method would be time consuming.  Instead, you can use the Autofill to quickly copy and paste content to adjacent cells in the same row or column. 1. Select the cell(s) containing the content you want to use. The fill handle will appear as a small square in the bottom-right corner of the selected cell(s). 2. Click, hold, and drag the fill handle until all of the cells you want to fill are selected. 3. Release the mouse to fill the selected cells.
  • 12. 12 Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 1 2 3
  • 13.  Common uses of functions are to calculate the sum, find the maximum and minimum value, count the number of entries, and calculate the average value from a range of data  Consist of two parts namely, the function name and the cell address  The cell address is used by functions to derive a result  Can use a single argument, a fixed number of arguments, an indeterminate number of arguments, or an optional argument  Uses more than one argument, separates the arguments with a comma  Can also use the AutoSum feature of Excel to perform quick calculation such as finding the Sum, Average and so on  Excel has a large library of function with more than 3000 functions, which have been grouped into different categories Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 13
  • 14.  To illustrate Excel's most popular financial functions, we consider a loan with monthly payments, an annual interest rate of 6%, a 20- year duration, a present value of $150,000 (amount borrowed) and a future value of 0 (that's what you hope to achieve when you pay off a loan). Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 14
  • 15. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 15
  • 16. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 16
  • 17. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 17 Function Syntax Description Example NOMINAL(effect_rate, npery) Returns the nominal annual interest rate based on the given rate and number of compounding periods per year 1. Type the following in cell A1 and A2 in a worksheet: Effective Interest Rate Number of Compounding Periods Per Year 2. Type the following in cell B1 and B2: 6.25% 4 3. Select cell B4. 4. Select NOMINAL. 5. Type B1 and B2 in each of the text boxes in the dialog box. 6. Click OK. 0.061086 is displayed on the worksheet.
  • 18. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 18 Function Syntax Description Example AND(logical1, logical2) Checks whether all the arguments are TRUE and it returns TRUE only if all the arguments are TRUE 1. Select AND. 2. Type 4*3=12 in the Logical1 text box. 3. Type 7*2=14 in the Logical2 text box. 4. Click OK. TRUE is displayed on the worksheet. IF(logical_test, value_if_true, value_if_false) Checks whether the condition is TRUE, returns a value if the condition is true and returns another value if the condition is FALSE 1. Type 100 in A1. 2. Select cell A2. 3. Select IF. 4. Type the following text in each of the text boxes. A1<=50 Conveyance will be given Conveyance will not be given 5. Click OK. Conveyance will not be given is displayed on the worksheet.
  • 19. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 19 Function Syntax Description Example LOWER(text) Transforms the letters in the text string to lower case =LOWER("OFFICE 2010") Will display office 2010 in the worksheet DOLLAR(number,[decimal]) Changes a number to text using currency format =DOLLAR(452, 3) Will display $452.000 in the worksheet EXACT(text1,text2) Examines whether two texts are exactly same (case- sensitive) and returns the value of TRUE or FALSE =EXACT("Hello", "hello") Will display FALSE in the worksheet FIXED(number,[decimal],[no_co mmas]) Rounds off the number to specified decimal places and displays the number with or without the commas =FIXED(5443.295,1,TRUE) Will display 5443.3 in the worksheet PROPER(text) Capitalizes the first letter in the word and letter after special character, and lowers the case of all the other letters in the word =PROPER("mY friend’s book") Will display My Friend’S Book in the worksheet
  • 20. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 20 Function Syntax Description Example REPLACE(old_text,start_n um,num_chars,new_text) Replaces old text with a new text string =REPLACE("Hello",1,2,"A") Will display Allo in the worksheet REPEAT(text,number_tim es) Prints text the number of times specified =REPT("1#A",3) Will display 1#A1#A1#A in the worksheet SEARCH(find_text,within _text,[start_num]) Returns the location of the character from within a string starting from left to right, considering the starting number of the text in the string =SEARCH("A","Apache",2) Will display 3 in the worksheet SUBSTITUTE(text,old_text ,new_text,[instance_num ber]) Replaces the old text with the new text. You can also specify the instance position of the text in the string that is required to be replaced =SUBSTITUTE("December 1, 2011",1,2,3) Will display December 1, 2012 in the worksheet T(value) Returns text if the value referred is text else returns blank if the value referred is numerical or logical =T(“Office”) Will display Office in the worksheet TRIM(text) Removes all the extra spaces in the string but preserves the single spacing in between words =TRIM("Microsoft Excel") Will display Microsoft Excel in the worksheet
  • 21. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 21 Function Syntax Description Example DATEVALUE(date_text) Transforms the date in into serial number that represents date in Microsoft Excel date- time code =DATEVALUE("12/12/2012 ") Will display 41255 in the worksheet DAYS360(start_date,end_date,[ method]) Returns the numbers of days between two dates based on a 360-days year =DAYS360("1/1/2011","5 /1/2011") Will display 120 in the worksheet WEEKNUM(serial_number, [return_type]) Returns the week number of the year =WEEKNUM("7/1/2011",1) Will display 27 in the worksheet
  • 22. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 22 Function Syntax Description Example HYPERLINK(http_location, [friendly_name]) Creates a shortcut or jump that opens a document stored on a network server, an intranet, or the Internet 1. Select HYPERLINK. 2. Type http://google.com in Link_location box. 3. Type Google in the Friendly_name text box. 4. Click OK. Google is displayed in the worksheet. LOOKUP() Looks up value from one-row or one-column range, or from an array 1. Type the following data in cells from A1 to A5 in a worksheet: Alison Martha Peter Ricky Ted 2. Type the following data in cells from B1 to B5: $56 $68 $80 $93 $86 3. Select cell A7. 4. Select LOOKUP. 5. Select OK. 6. Type the following in the text boxes of the dialog box: A3 A1:A5 B1:B5 7. Click OK. 80 is displayed in the worksheet.
  • 23. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 23 Function Syntax Description Example COMBIN(number, number_chosen) Returns the number of combinations for a given number of items =COMBIN(6,2) Will display 15 in the worksheet GCD(number1,number2,…) Returns the greatest common divisor of more than one =GCD(3,17) Will display 1 in the worksheet LCM(number1,number2,…) Returns the least common multiple =LCM(6,9) Will display 18 in the worksheet LOG(number,base value) Returns the log of the number depending upon the base value specified =LOG(9,2) Will display 3.169925001 in the worksheet PI() Returns the PI value =PI() Will display 3.141592654 in the worksheet
  • 24. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 24
  • 25. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 25 Function Syntax Description Example CONFIDENCE(alpha, standard_dev, size) Returns a confidence interval for a population mean 1. Type 0.05 in A1. 2. Type 3.5 in A2. 3. Type 100 in A3. 4. Select CONFIDENCE. 5. Type the following the text boxes of the dialog box: A1 A2 A3 6. Click OK. 0.685987395 is displayed in the worksheet. FISHER(x) Returns the Fisher transformation 1. Type -0.5 in A1. 2. Click cell A2. 3. Select FISHER. 4. Type A1 in the X box. 5. Click OK. -0.549306144 is displayed in the worksheet.
  • 26. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 26 Function Syntax Description Example PEARSON(array1, array2) Returns the Pearson product moment correlation co- efficient (r) 1. Type the following from cell A1 to A5: 3 4 1 2 5 2. Type the following from cell B1 to B5: 2 5 4 3 1 3. Select PEARSON. 4. Type the following in the text boxes of the dialog box: A1:A5 B1:B5 5. Click OK. -0.4 is displayed on the worksheet.
  • 27. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 27 Function Syntax Description Example BIN2DEC(number) Converts the binary number to a decimal number 1. Type 110010 in A1. 2. Click cell A2. 3. Select BIN2DEC. 4. Type A1 in the Number text box. 5. Click OK. 50 is displayed in the worksheet. DELTA(number1, number2) Tests whether two numbers are equal 1. Select DELTA. 2. Type 5678754335 in the Number1 box. 3. Type 5678745335 in the Number2 box. 4. Click OK. 0 is displayed in the worksheet. IMREAL(inumber) Returns the real co-efficient of a complex number 1. Select IMREAL. 2. Type 6+i7 in the text box of the dialog box. 3. Click OK. 6 is displayed in the worksheet.
  • 28. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 28 Function Syntax Description Example INFO(type_text) Returns the information about the current operating environment 1. Select INFO. 2. Type system in the Type_text text box. 3. Click OK. pcdos is displayed on the worksheet. ISTEXT(value) Checks whether the value is text and returns TRUE or FALSE 1. Type Excel in A1. 2. Select ISTEXT. 3. Type A1 in the Value text box. 4. Click OK. True is displayed in the worksheet.
  • 29.  Much of the time, people use Excel to sum columns and rows of data.  Auto Sum saves your time in creating basic formulas.  To use Auto Sum ◦ . Select the cell that is located the end of the column or row that you want to add, and then click the “AutoSum” button in the “Function Library” group on the “Formulas” tab in the Ribbon Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 29
  • 30.  Conditional formatting allows you to automatically apply formatting—such as colors, icons, and data bars—to one or more cells based on the cell value.  For example, a conditional formatting rule might be: If the value is less than $2000, color the cell red.  By applying this rule, you'd be able to quickly see which cells contain values less than $2000. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 30
  • 31.  To create a conditional formatting rule: ◦ Select the desired cells for the conditional formatting rule. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 31
  • 32.  From the Home tab, click the Conditional Formatting command. A drop-down menu will appear.  Hover the mouse over the desired conditional formatting type, then select the desired rule from the menu that appears. In our example, we want to highlight cells that are greater than $4000. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 32
  • 33.  A dialog box will appear. Enter the desired value(s) into the blank field. In our example, we'll enter 4000 as our value.  Select a formatting style from the drop-down menu. In our example, we'll choose Green Fill with Dark Green Text, then click OK.  The conditional formatting will be applied to the selected cells. In our example, it's easy to see which salespeople reached the $4000 sales goal for each month.  The conditional formatting will be applied to the selected cells. In our example, it's easy to see which salespeople reached the $4000 sales goal for each month. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 33
  • 34. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 34
  • 35.  You can apply multiple conditional formatting rules to a cell range or worksheet, allowing you to visualize different trends and patterns in your data. Aptech Computer Education Presented by: Muhammad Ehtisham Siddiqui 35
  • 36. 36