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 (20)

Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excel
 
MS Excel 2013
MS Excel 2013MS Excel 2013
MS Excel 2013
 
Ms excel
Ms excelMs excel
Ms excel
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
Formulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh TiwariFormulas and functions - By Amresh Tiwari
Formulas and functions - By Amresh Tiwari
 
Excel lesson01
Excel lesson01Excel lesson01
Excel lesson01
 
MS Excel
MS ExcelMS Excel
MS Excel
 
Advance excel
Advance excelAdvance excel
Advance excel
 
Sorting and Filtering.pptx
Sorting and Filtering.pptxSorting and Filtering.pptx
Sorting and Filtering.pptx
 
excel charts
excel chartsexcel charts
excel charts
 
A practical tutorial to excel
A practical tutorial to excelA practical tutorial to excel
A practical tutorial to excel
 
Ms excel
Ms excelMs excel
Ms excel
 
Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet Lesson 1 introduction to spreadsheet
Lesson 1 introduction to spreadsheet
 
MS Word's main menu
MS Word's main menuMS Word's main menu
MS Word's main menu
 
Ms access ppt 2017 by Gopal saha
Ms access ppt 2017 by Gopal sahaMs access ppt 2017 by Gopal saha
Ms access ppt 2017 by Gopal saha
 
MS Excel 2nd
MS Excel 2ndMS Excel 2nd
MS Excel 2nd
 
Ms excel
Ms excelMs excel
Ms excel
 
Introduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginnersIntroduction to Microsoft Excel for beginners
Introduction to Microsoft Excel for beginners
 
Microsoft Excel Basics
Microsoft Excel BasicsMicrosoft Excel Basics
Microsoft Excel Basics
 

Similar to How to use basic Excel functions like SUM, IF, AND, OR and SUMIF

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 GradesElli May Cañas
 
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.pptxvanshikatyagi74
 
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.pptdejene3
 
functionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdffunctionsandformulas-131221213835-phpapp01.pdf
functionsandformulas-131221213835-phpapp01.pdfFranzLawrenzDeTorres1
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfRakesh Nimhan
 
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 ExcelChristopher Ward
 
New Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialNew Dynamic Array Functions. Excel Tutorial
New Dynamic Array Functions. Excel TutorialIlgar Zarbaliyev
 
cse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxcse111-lecture10-1491556635.pptx
cse111-lecture10-1491556635.pptxssuser3d8a50
 
Simple Spreadsheet Tips
Simple Spreadsheet TipsSimple Spreadsheet Tips
Simple Spreadsheet TipsInside Access
 
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 FunctionsSmart Chicago Collaborative
 

Similar to How to use basic Excel functions like SUM, IF, AND, OR and SUMIF (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
 
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
 
Introduction to python programming
Introduction to python programmingIntroduction to python programming
Introduction to python programming
 

Recently uploaded

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxnelietumpap1
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4MiaBumagat1
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 

Recently uploaded (20)

Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Q4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptxQ4 English4 Week3 PPT Melcnmg-based.pptx
Q4 English4 Week3 PPT Melcnmg-based.pptx
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptxFINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
FINALS_OF_LEFT_ON_C'N_EL_DORADO_2024.pptx
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4ANG SEKTOR NG agrikultura.pptx QUARTER 4
ANG SEKTOR NG agrikultura.pptx QUARTER 4
 
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptxLEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
LEFT_ON_C'N_ PRELIMS_EL_DORADO_2024.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 

How to use basic Excel functions like SUM, IF, AND, OR and SUMIF

  • 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], ...)