SlideShare a Scribd company logo
1 of 47
Excel Essentials
Ved Prakash Mishra
Agenda
• Logical Operators
• Math's Formulas
• Text Formulas
• Date & Time Formulas
• Lookup & Reference
• Information Formulas
• Filters
• Pivot Table
• Charts
2
Logical Operators
3
If Operator
what does it do?
4
• The If Function can perform a logical test
and return one value for a TRUE Result,
and another for a False Result.
IF(Logical Test,value_if_true,value_if_false)
Example - IF(A1>35,“Pass” ,“Fail”)
IFERROR Operator
What does it do?
5
• The IFERROR function can perform a
logical test and return one value for a
TRUE result, and another if there is error
in formula/value.
IFERROR IF
(A1/B1,“Valid Value” ,“Error in calculation”)
AND Operator
What does it do?
6
• Return TRUE if all of the argument
evaluate to TRUE
IF(AND(A1>35,B1>35), “PASS”, “FAIL”,
OR Operator
What does it do?
7
• Return TRUE if all of the argument
evaluate to TRUE
IF(OR(A1>75,B1>75), “GOOD JOB”, “IMPROVE”)
8
Math’s Formulas
SUM
What does it do?
9
• ADDITION (individual cell/ range/ranges) SUM(CELL),SUM(range),
SUM(range1,range2,range3)
SUM IF
What does it do?
10
• Adds all numbers in a range of cell based on
one criteria SUM IF (RANGE,CRITERIA,SUMRANGE)
SUMIFS
What does it do?
11
• Adds all numbers in a range of cell based on
multiple criteria
SUM IF
(SUMRANGE,CRITERIA_RANGE1,CRITERIA1,..)
MIN
What does it do?
12
• Returns the smallest value from the numbers
provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
MAX
What does it do?
13
• Returns the largest value from the numbers
provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
AVERAGE
What does it do?
14
• Returns the average(arithmetic mean) of the
arguments. AVERAGE(range),AVERAGE(range1,range2,range3)
COUNT
What does it do?
15
• Counts the numbers of numbers in supplied
value COUNT(range),COUNT(range1,range2,range3)
COUNTA
What does it do?
16
• Count the numbers of non-blank cell. COUNTA(range),COUNT(range1,range2,range3)
COUNTBLANK
What does it do?
17
• Count the numbers of blank cells. COUNTBLANK(range),
COUNTBLANK(range1,range2,range3)
COUNTIF
What does it do?
18
• Count the numbers of cells in a range that
match the supplied criteria. COUNTIF(range, criteria)
COUNTIFS
What does it do?
19
• Count the numbers of cells in a range that
match the multiple criteria. COUNTIF(range, criteria)
20
Texts Formulas
EXACT
What does it do?
21
• Compares two strings and returns TRUE if
both values are the same. Exact (text1,text2)
FIND
What does it do?
22
• Used to return the position of a specific
character or substring within a text string. Find(Text to find, source text,optional_start_position)
SEARCH
What does it do?
23
• Used to return the position of a specific
character or substring within a text string-NOT
CASE SENSITIVE
Search(Text to find, source
text,optional_start_position)
LEN
What does it do?
24
• Returns the length of the specified strings Len(string)
LEFT
What does it do?
25
• Extract a substring from string, starting from
the left-most character. Left(source text, end number / char position)
RIGHT
What does it do?
26
• Returns the last character or characters in a
text strings, based on the number of
characters you specify
Right(source text, end number / char position)
MID
What does it do?
27
• Extract text from inside a string. Mid(source text, end number / char position)
CONCATENATE
What does it do?
28
• Allows you to combine text
CONCATENATE(text1,text2,text3,…)
29
Date & Time Formulas
TODAY
What does it do?
30
• Returns the current date
TODAY()
YEAR
What does it do?
31
• Extracts YEAR from a date
YEAR(date)
MONTH
What does it do?
32
• Extracts MONTH from a date
MONTH(date)
DAY
What does it do?
33
• Extracts DAY from a date
DAY(date)
DATE
What does it do?
34
• Converts inputs into date format
DATE(year, month, day)
ADVANCE DATE FUNCTIONS
What does it do?
35
• Date can be used in logical operations and
few math’s functions. Date(A1) - Date(B1)
36
LOOKUP AND
REFERENCE FORMULAS
VLOOKUP
What does it do?
37
• Performs a vertical lookup by searching for a
value in the first column of a table and
returning the value in the same row
VLOOKUP
(value to search,source_table,column_number_to_display, FALSE)
HLOOKUP
What does it do?
38
• Performs a horizontal lookup by searching for
a value in the first column of a table and
returning the value in the same row
HLOOKUP
(value to search,source_table,column_number_to_display, FALSE)
39
INFORMATION Formulas
ISERROR
What does it do?
40
• Checks whether a value is an error and
returns TRUE or FALSE ISERROR(value or expression)
ISBLANK
What does it do?
41
• Checks whether a cell IS BLANK OR NOT
AND RETURNS true OR false ISBLANK (CELL)
ISFORMULA
What does it do?
42
• The if function can perform a logical test and
return one value for a TRUE result, and
another for a FALSE result
ISFORMULA(cell)
43
CHARTS
44
FILTERS
45
PIVOT TABLE
Q & A
46
Thank You
47

More Related Content

What's hot

What's hot (20)

Matematika terapan week 6
Matematika terapan week 6 Matematika terapan week 6
Matematika terapan week 6
 
Math
MathMath
Math
 
Implementing Merge Sort
Implementing Merge SortImplementing Merge Sort
Implementing Merge Sort
 
Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1Summary of MATLAB Functions-Part1
Summary of MATLAB Functions-Part1
 
Basics mathematical modeling
Basics mathematical modelingBasics mathematical modeling
Basics mathematical modeling
 
Sorting algorithm
Sorting algorithmSorting algorithm
Sorting algorithm
 
Algorithms.
Algorithms. Algorithms.
Algorithms.
 
Unit 2 algorithm
Unit   2 algorithmUnit   2 algorithm
Unit 2 algorithm
 
Merge sort
Merge sortMerge sort
Merge sort
 
Algorithms Lecture 8: Pattern Algorithms
Algorithms Lecture 8: Pattern AlgorithmsAlgorithms Lecture 8: Pattern Algorithms
Algorithms Lecture 8: Pattern Algorithms
 
Sortsearch
SortsearchSortsearch
Sortsearch
 
Relational Algebra,Types of join
Relational Algebra,Types of joinRelational Algebra,Types of join
Relational Algebra,Types of join
 
Alg2 lesson 4-8
Alg2 lesson 4-8Alg2 lesson 4-8
Alg2 lesson 4-8
 
Alg2 lesson 4-8
Alg2 lesson 4-8Alg2 lesson 4-8
Alg2 lesson 4-8
 
Algorithms
AlgorithmsAlgorithms
Algorithms
 
My presentation
My presentationMy presentation
My presentation
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
Medians and order statistics
Medians and order statisticsMedians and order statistics
Medians and order statistics
 
Introduction to mathematical modelling
Introduction to mathematical modellingIntroduction to mathematical modelling
Introduction to mathematical modelling
 
Limits
LimitsLimits
Limits
 

Similar to Excel formula

Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel FunctionsGautam Gupta
 
it skill excel sheet for ppt.pptx
it skill excel sheet for ppt.pptxit skill excel sheet for ppt.pptx
it skill excel sheet for ppt.pptxMdAquibRazi1
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchRakesh Sah
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptxPizzaM
 
Introduction to MS Excel
Introduction to MS ExcelIntroduction to MS Excel
Introduction to MS ExcelTarek Dib
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2macrob14
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptxNewmanLeke
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commandsDiyaVerma14
 
3. lookup functions in excel
3. lookup functions in excel3. lookup functions in excel
3. lookup functions in excelDr. Prashant Vats
 
ExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxJohn Donahue
 
Using excel functions
Using excel functions Using excel functions
Using excel functions Yusif mzafar
 
Algorithms the fundamentals, For computer Science.ppt
Algorithms the fundamentals, For computer Science.pptAlgorithms the fundamentals, For computer Science.ppt
Algorithms the fundamentals, For computer Science.pptCarloCimacio
 
Excel Functions
Excel Functions Excel Functions
Excel Functions BHARAT JHA
 
Getting started with microsoft excel.
Getting started with microsoft excel.Getting started with microsoft excel.
Getting started with microsoft excel.Jatin Mishra
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxCliffordBorromeo
 
Excel Workshop
Excel WorkshopExcel Workshop
Excel WorkshopNhi Tran
 

Similar to Excel formula (20)

Using Excel Functions
Using Excel FunctionsUsing Excel Functions
Using Excel Functions
 
it skill excel sheet for ppt.pptx
it skill excel sheet for ppt.pptxit skill excel sheet for ppt.pptx
it skill excel sheet for ppt.pptx
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
 
1.2 Zep Excel.pptx
1.2 Zep Excel.pptx1.2 Zep Excel.pptx
1.2 Zep Excel.pptx
 
Introduction to MS Excel
Introduction to MS ExcelIntroduction to MS Excel
Introduction to MS Excel
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
 
Advance excel
Advance excelAdvance excel
Advance excel
 
Excel Overview.pptx
Excel Overview.pptxExcel Overview.pptx
Excel Overview.pptx
 
Ms excel
Ms excelMs excel
Ms excel
 
Ms excel commands
Ms excel commandsMs excel commands
Ms excel commands
 
3. lookup functions in excel
3. lookup functions in excel3. lookup functions in excel
3. lookup functions in excel
 
ExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptxExcelTipsAndTricks.pptx
ExcelTipsAndTricks.pptx
 
Using excel functions
Using excel functions Using excel functions
Using excel functions
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
Algorithms the fundamentals, For computer Science.ppt
Algorithms the fundamentals, For computer Science.pptAlgorithms the fundamentals, For computer Science.ppt
Algorithms the fundamentals, For computer Science.ppt
 
Excel Functions
Excel Functions Excel Functions
Excel Functions
 
Getting started with microsoft excel.
Getting started with microsoft excel.Getting started with microsoft excel.
Getting started with microsoft excel.
 
Advanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptxAdvanced Spreadsheet Skills-1.pptx
Advanced Spreadsheet Skills-1.pptx
 
Excel Workshop
Excel WorkshopExcel Workshop
Excel Workshop
 

Recently uploaded

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfUmakantAnnand
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 

Recently uploaded (20)

BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Concept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.CompdfConcept of Vouching. B.Com(Hons) /B.Compdf
Concept of Vouching. B.Com(Hons) /B.Compdf
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 

Excel formula

  • 2. Agenda • Logical Operators • Math's Formulas • Text Formulas • Date & Time Formulas • Lookup & Reference • Information Formulas • Filters • Pivot Table • Charts 2
  • 4. If Operator what does it do? 4 • The If Function can perform a logical test and return one value for a TRUE Result, and another for a False Result. IF(Logical Test,value_if_true,value_if_false) Example - IF(A1>35,“Pass” ,“Fail”)
  • 5. IFERROR Operator What does it do? 5 • The IFERROR function can perform a logical test and return one value for a TRUE result, and another if there is error in formula/value. IFERROR IF (A1/B1,“Valid Value” ,“Error in calculation”)
  • 6. AND Operator What does it do? 6 • Return TRUE if all of the argument evaluate to TRUE IF(AND(A1>35,B1>35), “PASS”, “FAIL”,
  • 7. OR Operator What does it do? 7 • Return TRUE if all of the argument evaluate to TRUE IF(OR(A1>75,B1>75), “GOOD JOB”, “IMPROVE”)
  • 9. SUM What does it do? 9 • ADDITION (individual cell/ range/ranges) SUM(CELL),SUM(range), SUM(range1,range2,range3)
  • 10. SUM IF What does it do? 10 • Adds all numbers in a range of cell based on one criteria SUM IF (RANGE,CRITERIA,SUMRANGE)
  • 11. SUMIFS What does it do? 11 • Adds all numbers in a range of cell based on multiple criteria SUM IF (SUMRANGE,CRITERIA_RANGE1,CRITERIA1,..)
  • 12. MIN What does it do? 12 • Returns the smallest value from the numbers provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
  • 13. MAX What does it do? 13 • Returns the largest value from the numbers provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
  • 14. AVERAGE What does it do? 14 • Returns the average(arithmetic mean) of the arguments. AVERAGE(range),AVERAGE(range1,range2,range3)
  • 15. COUNT What does it do? 15 • Counts the numbers of numbers in supplied value COUNT(range),COUNT(range1,range2,range3)
  • 16. COUNTA What does it do? 16 • Count the numbers of non-blank cell. COUNTA(range),COUNT(range1,range2,range3)
  • 17. COUNTBLANK What does it do? 17 • Count the numbers of blank cells. COUNTBLANK(range), COUNTBLANK(range1,range2,range3)
  • 18. COUNTIF What does it do? 18 • Count the numbers of cells in a range that match the supplied criteria. COUNTIF(range, criteria)
  • 19. COUNTIFS What does it do? 19 • Count the numbers of cells in a range that match the multiple criteria. COUNTIF(range, criteria)
  • 21. EXACT What does it do? 21 • Compares two strings and returns TRUE if both values are the same. Exact (text1,text2)
  • 22. FIND What does it do? 22 • Used to return the position of a specific character or substring within a text string. Find(Text to find, source text,optional_start_position)
  • 23. SEARCH What does it do? 23 • Used to return the position of a specific character or substring within a text string-NOT CASE SENSITIVE Search(Text to find, source text,optional_start_position)
  • 24. LEN What does it do? 24 • Returns the length of the specified strings Len(string)
  • 25. LEFT What does it do? 25 • Extract a substring from string, starting from the left-most character. Left(source text, end number / char position)
  • 26. RIGHT What does it do? 26 • Returns the last character or characters in a text strings, based on the number of characters you specify Right(source text, end number / char position)
  • 27. MID What does it do? 27 • Extract text from inside a string. Mid(source text, end number / char position)
  • 28. CONCATENATE What does it do? 28 • Allows you to combine text CONCATENATE(text1,text2,text3,…)
  • 29. 29 Date & Time Formulas
  • 30. TODAY What does it do? 30 • Returns the current date TODAY()
  • 31. YEAR What does it do? 31 • Extracts YEAR from a date YEAR(date)
  • 32. MONTH What does it do? 32 • Extracts MONTH from a date MONTH(date)
  • 33. DAY What does it do? 33 • Extracts DAY from a date DAY(date)
  • 34. DATE What does it do? 34 • Converts inputs into date format DATE(year, month, day)
  • 35. ADVANCE DATE FUNCTIONS What does it do? 35 • Date can be used in logical operations and few math’s functions. Date(A1) - Date(B1)
  • 37. VLOOKUP What does it do? 37 • Performs a vertical lookup by searching for a value in the first column of a table and returning the value in the same row VLOOKUP (value to search,source_table,column_number_to_display, FALSE)
  • 38. HLOOKUP What does it do? 38 • Performs a horizontal lookup by searching for a value in the first column of a table and returning the value in the same row HLOOKUP (value to search,source_table,column_number_to_display, FALSE)
  • 40. ISERROR What does it do? 40 • Checks whether a value is an error and returns TRUE or FALSE ISERROR(value or expression)
  • 41. ISBLANK What does it do? 41 • Checks whether a cell IS BLANK OR NOT AND RETURNS true OR false ISBLANK (CELL)
  • 42. ISFORMULA What does it do? 42 • The if function can perform a logical test and return one value for a TRUE result, and another for a FALSE result ISFORMULA(cell)