SlideShare a Scribd company logo
1 of 18
FUNCTION OF
MS EXCEL
PRESENTED BY:-
HEBA SHOAIB KIDWAI
Ms Excel
Meaning:-
It is basically a spreadsheet program formed by Microsoft, in which there
are rows and column which used to organize the data with function and
formula.
Basic Terms:-
WORKSHEET:-
It is a grid of horizontal rows and vertical column.
• Rows:- Rows are horizontal staring from 1 and go as 2,3,4.... Maximum
row in ms excel worksheet is 1,048,576(2019).
• Column:- Column are vertical staring from A and go as B, C. Colum are
lettered as A-Z, AA-AZ, BA-BZ, AAA-AAZ, ABA-ABZ and go on... Maximum
column in excel worksheet is 16384 (2019).
 WORKBOOK:-
A spreadsheet allows you to combine more than one worksheet in a file.
Such a file having multiple worksheets is know as a workbook.
DIFFERNCE BETWEEN WOEKBOOK AND WORKSHEET
A WORKSHEET is a grid of cells made up of rows and columns. Multiple
worksheets can be combined under a file know as WORKBOOK.
 CELLS:-
Cell is a basic unit of worksheet where numbers, texts, formulas etc. Can be
placed. Cell is formed by intersection of rows and column and this
intersection gives a cell a unique address i.e. the combination of the column
letter and row number.
FOR EX:- If a row 4 intersected by a column E, then the cell formed out of it
gets an address E4.
• Cell Pointer:- It is a cell boundary that specifies which cell is active at that
moment
• Current cell:- It is a cell which is active. This is the cell where cell pointer
point to. And it is the cell where the next entry would take place.
• Range of cells:- A range of cells is a group of contiguous cells that form
rectangular area in shape. For ex:- a range starting from F7 till G14 would
be written as F7:G14 in ms excel.
RANGE
CELL
CELL
Important terms
 Merging and unmerging of cells:-
Combining multiple cells (two or more) that are in the same row and/or in
the same column to a single cell is known as merging cells. Separating
the cells that are merged is known as unmerging cells
Inserting a cell:-
1. Select the cells, rows, or columns where
you want the new, blank cells to appear.
2. Click the drop-down arrow attached to
the Insert button in the Cells group of the
Home tab.
3. Click Insert Cells on the drop-down menu.
 Shift Cells Right shifts existing cells to the right to
make room for the blank cells you want to insert.
 Shift Cells Down instructs Excel to shift existing
cells down. This is the default option.
 Entire Row inserts complete rows in the cell range.
You can also select the row number on the frame
before you choose the Insert command.
 Entire Column inserts complete columns in the cell
range. You can also select the column letter on the
frame before you choose the Insert command.
Then click Ok
MS EXCEL FUNCTION
BASIC TERMS
ARGUMENTS:- Arguments are the values passed to the functions, using
which the function carries out some task.
Syntax:- The structure of a function begins being with function name,
followed by an opening parenthesis, the arguments for the function are
separated by comas, and a closing parenthesis.
1. SUM
Meaning:-
This function is used for adding number in excel
Syntax:-
Sum function =sum(number 1, number 2...)
Arguments :-
• number1 - The first value to sum.
• number2 - [optional] The second value to sum.
Example:-
1. Enter the function
2. Select the column
3. press enter
Marks1 total is i.e. 79 same apply to marks 2 column i.e. 73
A B C
1 NAME MARKS 1(20) MARKS2(20)
2 RITA 12 14
3 SEEMA 14 16
4 SONIA 16 18
5 TARUN 18 10
6 TINA 19 17
7 TOTAL =sum(B2:B6) =sum(C2:C6)
2.IF
Meaning:-
Function is used for whether condition is true or false
Syntax:-
=IF (logical test, [value if true], [value if false])
Arguments:-
• logical test - A value or logical expression that can be evaluated as TRUE or
FALSE.
• Value if true - [optional] The value to return when logical test evaluates to
TRUE.
• Value if false - [optional] The value to return when logical test evaluates to
FALSE.
Example:-
After applying the function of IF:-
= if(B2:B6>35,“pass",“fail")
This means marks greater than 35 true
and less than 35 false
FFLRGT
A B
1 NAME MARKS
2 MEENA 75
3 SURAJ 60
4 SONALI 35
5 REKHA 54
6 GEETA 30
A B C
1 NAME MARKS RESULT
2 MEENA 75 pass
3 SURAJ 60 pass
4 SONALI 35 fail
5 REKHA 54 pass
6 GEETA 30 fail
FUNCTION IS
PLACED
CLICK ON CELL THEN GO
RIGHT CORNER OF CELL
THAN SCROLL DOWN FOR
GETTING REMAING RESULT
2A. IF OR
Meaning:-
One condition to be true or false
Syntax:-
=IF(OR(logical test 1,logical test 2) , [value if true], [value if false])
Arguments:-
• Logical test 1 - The first condition or logical value to evaluate.
• Logical test 2 - [optional] The second condition or logical value to
evaluate.
• Value if true - [optional] The value to return when logical test evaluates to
TRUE.
• Value if false - [optional] The value to return when logical test evaluates to
FALSE.
Example:-
FUNCION IS
APPLIED
CLICK ON CELL
THEN GO RIGHT
CORNER OF CELL
THEN SROLL DOWN
After applying the function:-
=if(or(warehouse1>0,warehouse2>0),"instock","outstock")
A B C D
1 PRODUCT WAREHOUSE 1 WAREHOUSE 2 RESULT
2 TABLE 0 10 INSTOCK
3 CHAIR 0 0 OUTSTOCK
4 BED 5 1 INSTOCK
5 CABINET 0 0 OUTSTOCK
2B. IF AND
Meaning:-
All condition need to be true
Syntax:-
=IF(AND(logical test 1,logical test 2) , [value if true], [value if false])
Arguments:-
• Logical test 1 - The first condition or logical value to evaluate.
• Logical test 2 - The second condition or logical value to evaluate.
• Value if true - The value to return when logical test evaluates to TRUE.
• Value if false - The value to return when logical test evaluates to FALSE.
Example:-
FUNCTION IS
APPLIED
After applying the function:- =if(and(marks1>40,marks2>40),“pass",“fail")
A B C D
1 STUDENT MARKS 1 MARKS 2 RESULT
2 STUDENT 1 30 60 FAIL
3 STUDENT 2 50 40 FAIL
4 STUDENT 3 75 64 PASS
5 STUDENT 4 66 35 FAIL
6 STUDENT 5 80 77 PASS
3. SUM IF
Meaning:-
The powerful SUMIF function in Excel sums cells based on certain criteria
Syntax:-
• =SUMIFS (sum range, range1, criteria1, [range2], [criteria2], ...)
Arguments;-
• Sum range - The range to be summed.
• range1 - The first range to evaluate.
• criteria1 - The criteria to use on range1.
• range2 - [optional] The second range to evaluate.
• criteria2 - [optional] The criteria to use on range2.
Example:-
FUNCTION
APPLIED
After applying the function:-
=SUMIF(A1:A6,"=A",B1:B6)
ONLY “A” alphabet amount added that is 1500
A B
1 A 1000
2 B 1300
3 C 900
4 A 500
5 B 1500
6 C 800
Summary
• Sum:-
=sum(number 1, number 2...)
• If:-
=IF (logical test, [value if true], [value if false])
• If Or:-
=IF(OR(logical test 1,logical test 2) , [value if true], [value if
false])
• If And:-
=IF(AND(logical test 1,logical test 2) , [value if true], [value if
false])
• Sum If:-
=SUMIFS (sum range, range1, criteria1, [range2], [criteria2],
...)

More Related Content

What's hot

03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
Buffalo Seminary
 

What's hot (20)

Ms excel
Ms excelMs excel
Ms excel
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
 
MS EXCEL
MS EXCELMS EXCEL
MS EXCEL
 
Microsoft Excel- basics
Microsoft Excel-  basicsMicrosoft Excel-  basics
Microsoft Excel- basics
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table Ms excel basic about Data, graph and pivot table
Ms excel basic about Data, graph and pivot table
 
MS Excel 2nd
MS Excel 2ndMS Excel 2nd
MS Excel 2nd
 
Introduction to powerpoint
Introduction to powerpointIntroduction to powerpoint
Introduction to powerpoint
 
Ms powerpoint
Ms powerpointMs powerpoint
Ms powerpoint
 
Ms excel
Ms excelMs excel
Ms excel
 
Ms powerpoint 2013
Ms powerpoint 2013Ms powerpoint 2013
Ms powerpoint 2013
 
Formatting in MS Excel
Formatting in MS ExcelFormatting in MS Excel
Formatting in MS Excel
 
Ms excel excersices
Ms excel excersicesMs excel excersices
Ms excel excersices
 
Excel ppt
Excel pptExcel ppt
Excel ppt
 
Ppt on ms excel
Ppt on ms excelPpt on ms excel
Ppt on ms excel
 
Excel lesson01
Excel lesson01Excel lesson01
Excel lesson01
 
Microsoft Excel Training
Microsoft Excel TrainingMicrosoft Excel Training
Microsoft Excel Training
 
Formula in MS Excel
Formula in MS ExcelFormula in MS Excel
Formula in MS Excel
 
Ms excel ppt presentation
Ms excel ppt presentationMs excel ppt presentation
Ms excel ppt presentation
 
MS Excel 2013
MS Excel 2013MS Excel 2013
MS Excel 2013
 

Similar to Ms excel

functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
FranzLawrenzDeTorres1
 
Manual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in ExcelManual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in Excel
Christopher Ward
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
ssuser3d8a50
 

Similar to Ms excel (20)

Use of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing GradesUse of Excel Spreadsheets in Computing Grades
Use of Excel Spreadsheets in Computing Grades
 
Excel training
Excel trainingExcel training
Excel training
 
Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
 
Useful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptxUseful Excel Functions & Formula Used everywhere.pptx
Useful Excel Functions & Formula Used everywhere.pptx
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
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
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdf
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
Excel tutorial
Excel tutorialExcel tutorial
Excel tutorial
 
Chapter9 more on database and sql
Chapter9 more on database and sqlChapter9 more on database and sql
Chapter9 more on database and sql
 
itm file
 itm file itm file
itm file
 
Manual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in ExcelManual for Troubleshooting Formulas & Functions in Excel
Manual for Troubleshooting Formulas & Functions in Excel
 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel Tutorial
 
Excle formula
Excle formulaExcle formula
Excle formula
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptx
 
Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet Tips
 
Powerpoint school
Powerpoint schoolPowerpoint school
Powerpoint school
 
Excel formulas
Excel formulasExcel formulas
Excel formulas
 
Libre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding FunctionsLibre Office Calc Lesson 4: Understanding Functions
Libre Office Calc Lesson 4: Understanding Functions
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Recently uploaded (20)

General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
NO1 Top Black Magic Specialist In Lahore Black magic In Pakistan Kala Ilam Ex...
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Plant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptxPlant propagation: Sexual and Asexual propapagation.pptx
Plant propagation: Sexual and Asexual propapagation.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 

Ms excel

  • 1. FUNCTION OF MS EXCEL PRESENTED BY:- HEBA SHOAIB KIDWAI
  • 2. Ms Excel Meaning:- It is basically a spreadsheet program formed by Microsoft, in which there are rows and column which used to organize the data with function and formula. Basic Terms:- WORKSHEET:- It is a grid of horizontal rows and vertical column. • Rows:- Rows are horizontal staring from 1 and go as 2,3,4.... Maximum row in ms excel worksheet is 1,048,576(2019). • Column:- Column are vertical staring from A and go as B, C. Colum are lettered as A-Z, AA-AZ, BA-BZ, AAA-AAZ, ABA-ABZ and go on... Maximum column in excel worksheet is 16384 (2019).
  • 3.  WORKBOOK:- A spreadsheet allows you to combine more than one worksheet in a file. Such a file having multiple worksheets is know as a workbook. DIFFERNCE BETWEEN WOEKBOOK AND WORKSHEET A WORKSHEET is a grid of cells made up of rows and columns. Multiple worksheets can be combined under a file know as WORKBOOK.  CELLS:- Cell is a basic unit of worksheet where numbers, texts, formulas etc. Can be placed. Cell is formed by intersection of rows and column and this intersection gives a cell a unique address i.e. the combination of the column letter and row number. FOR EX:- If a row 4 intersected by a column E, then the cell formed out of it gets an address E4. • Cell Pointer:- It is a cell boundary that specifies which cell is active at that moment • Current cell:- It is a cell which is active. This is the cell where cell pointer point to. And it is the cell where the next entry would take place. • Range of cells:- A range of cells is a group of contiguous cells that form rectangular area in shape. For ex:- a range starting from F7 till G14 would be written as F7:G14 in ms excel.
  • 5. Important terms  Merging and unmerging of cells:- Combining multiple cells (two or more) that are in the same row and/or in the same column to a single cell is known as merging cells. Separating the cells that are merged is known as unmerging cells
  • 6. Inserting a cell:- 1. Select the cells, rows, or columns where you want the new, blank cells to appear. 2. Click the drop-down arrow attached to the Insert button in the Cells group of the Home tab. 3. Click Insert Cells on the drop-down menu.  Shift Cells Right shifts existing cells to the right to make room for the blank cells you want to insert.  Shift Cells Down instructs Excel to shift existing cells down. This is the default option.  Entire Row inserts complete rows in the cell range. You can also select the row number on the frame before you choose the Insert command.  Entire Column inserts complete columns in the cell range. You can also select the column letter on the frame before you choose the Insert command. Then click Ok
  • 7. MS EXCEL FUNCTION BASIC TERMS ARGUMENTS:- Arguments are the values passed to the functions, using which the function carries out some task. Syntax:- The structure of a function begins being with function name, followed by an opening parenthesis, the arguments for the function are separated by comas, and a closing parenthesis.
  • 8. 1. SUM Meaning:- This function is used for adding number in excel Syntax:- Sum function =sum(number 1, number 2...) Arguments :- • number1 - The first value to sum. • number2 - [optional] The second value to sum.
  • 9. Example:- 1. Enter the function 2. Select the column 3. press enter Marks1 total is i.e. 79 same apply to marks 2 column i.e. 73 A B C 1 NAME MARKS 1(20) MARKS2(20) 2 RITA 12 14 3 SEEMA 14 16 4 SONIA 16 18 5 TARUN 18 10 6 TINA 19 17 7 TOTAL =sum(B2:B6) =sum(C2:C6)
  • 10. 2.IF Meaning:- Function is used for whether condition is true or false Syntax:- =IF (logical test, [value if true], [value if false]) Arguments:- • logical test - A value or logical expression that can be evaluated as TRUE or FALSE. • Value if true - [optional] The value to return when logical test evaluates to TRUE. • Value if false - [optional] The value to return when logical test evaluates to FALSE.
  • 11. Example:- After applying the function of IF:- = if(B2:B6>35,“pass",“fail") This means marks greater than 35 true and less than 35 false FFLRGT A B 1 NAME MARKS 2 MEENA 75 3 SURAJ 60 4 SONALI 35 5 REKHA 54 6 GEETA 30 A B C 1 NAME MARKS RESULT 2 MEENA 75 pass 3 SURAJ 60 pass 4 SONALI 35 fail 5 REKHA 54 pass 6 GEETA 30 fail FUNCTION IS PLACED CLICK ON CELL THEN GO RIGHT CORNER OF CELL THAN SCROLL DOWN FOR GETTING REMAING RESULT
  • 12. 2A. IF OR Meaning:- One condition to be true or false Syntax:- =IF(OR(logical test 1,logical test 2) , [value if true], [value if false]) Arguments:- • Logical test 1 - The first condition or logical value to evaluate. • Logical test 2 - [optional] The second condition or logical value to evaluate. • Value if true - [optional] The value to return when logical test evaluates to TRUE. • Value if false - [optional] The value to return when logical test evaluates to FALSE.
  • 13. Example:- FUNCION IS APPLIED CLICK ON CELL THEN GO RIGHT CORNER OF CELL THEN SROLL DOWN After applying the function:- =if(or(warehouse1>0,warehouse2>0),"instock","outstock") A B C D 1 PRODUCT WAREHOUSE 1 WAREHOUSE 2 RESULT 2 TABLE 0 10 INSTOCK 3 CHAIR 0 0 OUTSTOCK 4 BED 5 1 INSTOCK 5 CABINET 0 0 OUTSTOCK
  • 14. 2B. IF AND Meaning:- All condition need to be true Syntax:- =IF(AND(logical test 1,logical test 2) , [value if true], [value if false]) Arguments:- • Logical test 1 - The first condition or logical value to evaluate. • Logical test 2 - The second condition or logical value to evaluate. • Value if true - The value to return when logical test evaluates to TRUE. • Value if false - The value to return when logical test evaluates to FALSE.
  • 15. Example:- FUNCTION IS APPLIED After applying the function:- =if(and(marks1>40,marks2>40),“pass",“fail") A B C D 1 STUDENT MARKS 1 MARKS 2 RESULT 2 STUDENT 1 30 60 FAIL 3 STUDENT 2 50 40 FAIL 4 STUDENT 3 75 64 PASS 5 STUDENT 4 66 35 FAIL 6 STUDENT 5 80 77 PASS
  • 16. 3. SUM IF Meaning:- The powerful SUMIF function in Excel sums cells based on certain criteria Syntax:- • =SUMIFS (sum range, range1, criteria1, [range2], [criteria2], ...) Arguments;- • Sum range - The range to be summed. • range1 - The first range to evaluate. • criteria1 - The criteria to use on range1. • range2 - [optional] The second range to evaluate. • criteria2 - [optional] The criteria to use on range2.
  • 17. Example:- FUNCTION APPLIED After applying the function:- =SUMIF(A1:A6,"=A",B1:B6) ONLY “A” alphabet amount added that is 1500 A B 1 A 1000 2 B 1300 3 C 900 4 A 500 5 B 1500 6 C 800
  • 18. Summary • Sum:- =sum(number 1, number 2...) • If:- =IF (logical test, [value if true], [value if false]) • If Or:- =IF(OR(logical test 1,logical test 2) , [value if true], [value if false]) • If And:- =IF(AND(logical test 1,logical test 2) , [value if true], [value if false]) • Sum If:- =SUMIFS (sum range, range1, criteria1, [range2], [criteria2], ...)