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

Excel formula

  • 1.
  • 2.
    Agenda • Logical Operators •Math's Formulas • Text Formulas • Date & Time Formulas • Lookup & Reference • Information Formulas • Filters • Pivot Table • Charts 2
  • 3.
  • 4.
    If Operator what doesit 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 doesit 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 doesit do? 6 • Return TRUE if all of the argument evaluate to TRUE IF(AND(A1>35,B1>35), “PASS”, “FAIL”,
  • 7.
    OR Operator What doesit do? 7 • Return TRUE if all of the argument evaluate to TRUE IF(OR(A1>75,B1>75), “GOOD JOB”, “IMPROVE”)
  • 8.
  • 9.
    SUM What does itdo? 9 • ADDITION (individual cell/ range/ranges) SUM(CELL),SUM(range), SUM(range1,range2,range3)
  • 10.
    SUM IF What doesit do? 10 • Adds all numbers in a range of cell based on one criteria SUM IF (RANGE,CRITERIA,SUMRANGE)
  • 11.
    SUMIFS What does itdo? 11 • Adds all numbers in a range of cell based on multiple criteria SUM IF (SUMRANGE,CRITERIA_RANGE1,CRITERIA1,..)
  • 12.
    MIN What does itdo? 12 • Returns the smallest value from the numbers provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
  • 13.
    MAX What does itdo? 13 • Returns the largest value from the numbers provided. MIN(CELL),MIN(range),MIN(range1,range2,range3)
  • 14.
    AVERAGE What does itdo? 14 • Returns the average(arithmetic mean) of the arguments. AVERAGE(range),AVERAGE(range1,range2,range3)
  • 15.
    COUNT What does itdo? 15 • Counts the numbers of numbers in supplied value COUNT(range),COUNT(range1,range2,range3)
  • 16.
    COUNTA What does itdo? 16 • Count the numbers of non-blank cell. COUNTA(range),COUNT(range1,range2,range3)
  • 17.
    COUNTBLANK What does itdo? 17 • Count the numbers of blank cells. COUNTBLANK(range), COUNTBLANK(range1,range2,range3)
  • 18.
    COUNTIF What does itdo? 18 • Count the numbers of cells in a range that match the supplied criteria. COUNTIF(range, criteria)
  • 19.
    COUNTIFS What does itdo? 19 • Count the numbers of cells in a range that match the multiple criteria. COUNTIF(range, criteria)
  • 20.
  • 21.
    EXACT What does itdo? 21 • Compares two strings and returns TRUE if both values are the same. Exact (text1,text2)
  • 22.
    FIND What does itdo? 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 itdo? 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 itdo? 24 • Returns the length of the specified strings Len(string)
  • 25.
    LEFT What does itdo? 25 • Extract a substring from string, starting from the left-most character. Left(source text, end number / char position)
  • 26.
    RIGHT What does itdo? 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 itdo? 27 • Extract text from inside a string. Mid(source text, end number / char position)
  • 28.
    CONCATENATE What does itdo? 28 • Allows you to combine text CONCATENATE(text1,text2,text3,…)
  • 29.
  • 30.
    TODAY What does itdo? 30 • Returns the current date TODAY()
  • 31.
    YEAR What does itdo? 31 • Extracts YEAR from a date YEAR(date)
  • 32.
    MONTH What does itdo? 32 • Extracts MONTH from a date MONTH(date)
  • 33.
    DAY What does itdo? 33 • Extracts DAY from a date DAY(date)
  • 34.
    DATE What does itdo? 34 • Converts inputs into date format DATE(year, month, day)
  • 35.
    ADVANCE DATE FUNCTIONS Whatdoes it do? 35 • Date can be used in logical operations and few math’s functions. Date(A1) - Date(B1)
  • 36.
  • 37.
    VLOOKUP What does itdo? 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 itdo? 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.
  • 40.
    ISERROR What does itdo? 40 • Checks whether a value is an error and returns TRUE or FALSE ISERROR(value or expression)
  • 41.
    ISBLANK What does itdo? 41 • Checks whether a cell IS BLANK OR NOT AND RETURNS true OR false ISBLANK (CELL)
  • 42.
    ISFORMULA What does itdo? 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.
  • 44.
  • 45.
  • 46.
  • 47.