SlideShare a Scribd company logo
Excel Formulas
10 Formulas that helps you in any JOB
Presentation Flow
1. SUM Formula
2. Count Formula
3. Count A Formula
4. LEN Function
5. TRIM Function
6. RIGHT, LEFT and MID Function
7. VLOOKUP
8. IF Statements
9. SUMIF, COUNTIF AND AVERAGEIF
10. CONCATENATE Function
Private and Confidential - By Hitesh Biyani
SUM FORMULA
• The SUM formula does exactly what you would expect. It allows you to add 2 or
more numbers together
• Formula : =SUM(5,5) or =SUM(A1, B1) or =SUM(A1:B5)
• The above shows you different examples. You can have numbers in there
separated by commas and it will add them together for you, you can have cell
references and as long as there are numbers in those cells it will add them
together for you, or you can have a range of cells with a colon in between the 2
cells, and it will add the numbers in all the cells in the range.
• Keyboard Shortcuts: ALT + = (equal to sign) : The Shortcut automatically selects the
range of cells above the formula upto an empty cell. If used after applying a filter
on a column, this shortcut will give subtotal of the filtered values for that column
Shortcut : ALT + =
Private and Confidential - By Hitesh Biyani
COUNT Formula
• The count formula counts the number of cells in a range that have numbers in
them
• This formula only works with numbers though, It only counts the cells where there
are numbers
• Formula : =Count(A1:A10)
Private and Confidential - By Hitesh Biyani
COUNTA Formula
• Counts the number of non-empty cells in a range. It will count cells that have
numbers and/or any other characters in them
• Formula: =COUNTA(A1:A10)
• It counts the number of non-empty cells no matter the data type.
Private and Confidential - By Hitesh Biyani
LEN Function
• The LEN formula counts the number of characters in a cell. Be careful though! This
includes spaces.
• Formula : =LEN(A1)
• Notice the difference in the formula results: 10 characters without spaces in
between the words, 12 with spaces between the words.
Private and Confidential - By Hitesh Biyani
TRIM Function
• Useful for removing extra spaces in a cell whether at beginning, trailing or anywhere
between the words.
• Often when you pull data from a database you may find some extra spaces are put in
behind or in front of legitimate data.
• This can wreak havoc if you are trying to compare using IF statements or VLOOKUP’s.
• Formula: =TRIM(A1)
• I added in an extra space behind “I Love Excel”. The TRIM formula removes that extra
space. Check out the character count difference with and without the TRIM formula.
Private and Confidential - By Hitesh Biyani
RIGHT, LEFT and MID function
• These Formulas return the specified number of characters from a text string
• Right gives you the number of specified characters from right of a text string
• Left gives you the number of specified characters from left of a text string
• MID gives you the number of specified characters from middle of a text string
• Formula: =RIGHT(Text or Cell reference, number of characters), = LEFT(Text or Cell
reference, number of characters) and =MID(Text or Cell reference, Start Number,
number of characters)
I used the LEFT formula to get the
first word. I had it look in cell A1
and grab only the 1st character
from the left. This gave us the word
“I” from “I love Excel”
I used the MID formula to get the
middle word. I had it look in cell
A1, start at character 3, and grab 5
characters after that. This gives us
just the word “love” from “I love
Excel”
I used the RIGHT formula to get the
last word. I had it look at cell A1
and grab the first 5 characters from
the right. This gives us “Excel” from
“I love Excel”
Private and Confidential - By Hitesh Biyani
VLOOKUP Function
• By far the most used function in day to day operations of many businesses
• What it Does : Looks for a value in another table or array and returns value in the
same row from a column you specify
• In Simple terms, it does a find action of a value from one sheet or table or file in
another sheet or table or file and copies the value corresponding to that value
from the column specified in the formula
• Formula: =Vlookup(lookup_value, table_array, col_index_num, range_lookup)
• Let’s Break the above formula in 4 parts –
a. Lookup_Value = This is the field that has common references / values to other
file which has more details
b. Table_Array = This is the range that you select from another file or sheet or
table starting from the column which has common references / values to the
lookup_value as defined in (a) above
c. Col_index_num = This is the column reference number from which you wish to
pick values against the lookup value as defined in (a) above
d. range_lookup = This is used to derive approximate or exact match. “0” or “False”
value will provide an exact match whereas “1” or “True” value will provide an
approximate match
Private and Confidential - By Hitesh Biyani
VLOOKUP Function (Contd..)
• Example
• In this example, I am attempting to create Master List from List 1 and List 2 using Sales ID Person as my
“Lookup _value”
• Some Points to remember,
a. For a vlookup function, there always need to be a common field with common values which is referred to
as “lookup_value”.
b. It can be read like this while attempting the formula, lookup “x” in this range i.e. “x:y” and pick up “y” and
do an exact match i.e. “False” or “0”
Lookup_value Col_index_num
Range_lookupTable_Array
Private and Confidential - By Hitesh Biyani
IF Statements
• This again is most used formula for a lot of analytical scenarios where a data has to react differently based
on different situations
• Formula: =IF(logical_test, value_if_true, value_if_false)
• Logical Statements may include comparison of one value to another using “>”, “<“, “=“, “OR”, “AND”, etc
• In simple terms, it looks if the logical statement returns a true value or false value and accordingly, user
can define the value to be displayed if the result is true and and value to be displayed if result is false. So
basically it has 3 parts i.e. IF (logical test), THEN (if true) and ELSE (If not true)
• Let’s Break the above formula in 3 parts –
a. Logical Statement – Usually a comparison statement using Logical Operators
b. True value – If the answer to the logical statement is true, the value specified for true value will be
returned
c. False Value - If the answer to the logical statement is false, the value specified for false value will be
returned
• Example
Private and Confidential - By Hitesh Biyani
IF Statements(Contd…)
• If Statement is a very powerful formula which can be used to derive results of complex
problems. It can be used to avoid multiple steps while working on a worksheet and instead
can give result in one shot. This can be done using Nested IF Statements. This is covered in
our Advanced Excel Program
• Example of a Nested IF Statement
• =if(logical_test, value_if_true, if(logical_test, value_if_true, if(logical_test, so on and so
forth)
• Nested IF always has a new IF Statement for False value. This argument can be continued till
all the situations are covered. This statement is useful for defining Age Buckets
• =if(age<7, “0-7”,if(7<age<15, “8-15”, if(15<age<30, “16-30”, if(30<age<60, “31-60”, “60 and
above”))))
• There is one more version of IF Statements named IFERROR
• This formula will be triggered if the other formulas wind up giving you an error. It could look
something like #N/A and that’s pretty ugly. This can happen for legitimate reasons, but you
don’t want to hand your boss a sheet full of #N/A symbols
• In the above example to avoid #N/A values, below formula can be used
• =iferror(if(age<7, “0-7”,if(7<age<15, “8-15”, if(15<age<30, “16-30”, if(30<age<60, “31-60”, “60
and above”)))),””)
Private and Confidential - By Hitesh Biyani
SUMIF, COUNTIF AND AVERAGEIF
• These Formulas do their respective functions i.e. if the criteria are met
• Formulas: =SUMIF(Range, Criteria, Sum_Range) | =COUNTIF(Range, Criteria) | =AVERAGEIF(Range,
Criteria, Average_Range)
• In Simple Terms, it provides a sum of values within cells, count of cells and average of values within cells
for the criteria if satisfied
• Examples
Range
Criteria
Sum_Range Average_Range
Private and Confidential - By Hitesh Biyani
CONCATENATE
• Simple yet a very effective and useful formula for many day-to-day operations in office.
• This Formula is also denoted by Ampersand (&) Sign and it is used for joining the values in difference cells
• Many a times, we get a database where we feel the need to combine 2 columns or 2 fields, this formula
helps you achieve that in no time.
• Example
• In the above example, I have used Concatenate formula in Column D to derive Full Names from the
information given in Columns A, B and C
• Formula: = Concatenate(A2, “ ”, B2, “ ”, C2) OR =A2&“ ”&B2&“ ”&C2.
• In the above formula, I have combined the First Name, Middle Name and Surname with Spaces between
each of them. The SPACE or any Text has to be denoted in “Quotation” Marks to be reflected in the result
Private and Confidential - By Hitesh Biyani

More Related Content

What's hot

Basic excel training
Basic excel trainingBasic excel training
Basic excel training
Ankur Chaturvedi
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
maharzahid0
 
USING VLOOKUP FUNCTION
USING VLOOKUP FUNCTIONUSING VLOOKUP FUNCTION
USING VLOOKUP FUNCTION
Ruffson Panganiban
 
Excel IF function
Excel IF functionExcel IF function
Excel IF functionHtay Aung
 
Using vlookup in excel
Using vlookup in excelUsing vlookup in excel
Using vlookup in excelmegankilb
 
MS Excel Pivot Table Reports & Charts
MS Excel Pivot Table Reports & ChartsMS Excel Pivot Table Reports & Charts
MS Excel Pivot Table Reports & Charts
dnbakhan
 
3. lookup functions in excel
3. lookup functions in excel3. lookup functions in excel
3. lookup functions in excel
Dr. Prashant Vats
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
waszia
 
Advances in ms excel
Advances in ms excelAdvances in ms excel
Advances in ms excelMohit Kumar
 
Presentation
PresentationPresentation
Presentation
sindhu1801
 
How to use Hlookup find an exact match
How to use Hlookup find an exact match How to use Hlookup find an exact match
How to use Hlookup find an exact match
Excel Advise
 
Excel training
Excel  training Excel  training
Excel training
jaydip gupte
 
Lesson 1 Excel Introduction
Lesson 1 Excel IntroductionLesson 1 Excel Introduction
Lesson 1 Excel Introductionwats300
 
Excel Training
Excel TrainingExcel Training
Excel Training
Joshua Flewelling
 
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
Mzee Theogene KUBAHONIYESU
 
Creating a vlookup v1.0 050813
Creating a vlookup v1.0 050813Creating a vlookup v1.0 050813
Creating a vlookup v1.0 050813
Dave Shannon
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCH
Mridul Bansal
 
50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks 50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks
BurCom Consulting Ltd.
 
ms excel presentation...
ms excel presentation...ms excel presentation...
ms excel presentation...
alok1994
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excelsam ran
 

What's hot (20)

Basic excel training
Basic excel trainingBasic excel training
Basic excel training
 
Basic Ms excel
Basic Ms excelBasic Ms excel
Basic Ms excel
 
USING VLOOKUP FUNCTION
USING VLOOKUP FUNCTIONUSING VLOOKUP FUNCTION
USING VLOOKUP FUNCTION
 
Excel IF function
Excel IF functionExcel IF function
Excel IF function
 
Using vlookup in excel
Using vlookup in excelUsing vlookup in excel
Using vlookup in excel
 
MS Excel Pivot Table Reports & Charts
MS Excel Pivot Table Reports & ChartsMS Excel Pivot Table Reports & Charts
MS Excel Pivot Table Reports & Charts
 
3. lookup functions in excel
3. lookup functions in excel3. lookup functions in excel
3. lookup functions in excel
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
 
Advances in ms excel
Advances in ms excelAdvances in ms excel
Advances in ms excel
 
Presentation
PresentationPresentation
Presentation
 
How to use Hlookup find an exact match
How to use Hlookup find an exact match How to use Hlookup find an exact match
How to use Hlookup find an exact match
 
Excel training
Excel  training Excel  training
Excel training
 
Lesson 1 Excel Introduction
Lesson 1 Excel IntroductionLesson 1 Excel Introduction
Lesson 1 Excel Introduction
 
Excel Training
Excel TrainingExcel Training
Excel Training
 
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
 
Creating a vlookup v1.0 050813
Creating a vlookup v1.0 050813Creating a vlookup v1.0 050813
Creating a vlookup v1.0 050813
 
VLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCHVLOOKUP HLOOKUP INDEX MATCH
VLOOKUP HLOOKUP INDEX MATCH
 
50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks 50 MS Excel Tips and Tricks
50 MS Excel Tips and Tricks
 
ms excel presentation...
ms excel presentation...ms excel presentation...
ms excel presentation...
 
Teaching Excel
Teaching ExcelTeaching Excel
Teaching Excel
 

Viewers also liked

How to use vlookup & simple formula's for inventory
How to use vlookup & simple  formula's for inventoryHow to use vlookup & simple  formula's for inventory
How to use vlookup & simple formula's for inventoryhowto-excel
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
madhuparna bhowmik
 
MS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATION
Mridul Bansal
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functionsBuffalo Seminary
 
Pivot table
Pivot tablePivot table
Pivot table
Vijay Perepa
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
Pranav Kumar
 
Conditional statement
Conditional statementConditional statement
Conditional statement
Maxie Santos
 
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
BurCom Consulting Ltd.
 
Pivot table presentation
Pivot table presentationPivot table presentation
Pivot table presentationSha Tibnjn
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 Tutorial
SpreadsheetTrainer
 
Riflessione Metacognitiva finale - gruppo docenti Caivano
Riflessione Metacognitiva finale -  gruppo docenti CaivanoRiflessione Metacognitiva finale -  gruppo docenti Caivano
Riflessione Metacognitiva finale - gruppo docenti Caivano
Corrado Izzo
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
Alvin Maderista
 
Tuyen sinh trung cap y duoc tphcm
Tuyen sinh trung cap y duoc tphcmTuyen sinh trung cap y duoc tphcm
Tuyen sinh trung cap y duoc tphcm
Dược Sĩ Trung Cấp
 
Creating relationships with tables
Creating relationships with tablesCreating relationships with tables
Creating relationships with tablesJhen Articona
 
Microsoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guideMicrosoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guide
Paul Barnett
 
PERSONAL INFORMATION (2)
PERSONAL INFORMATION (2)PERSONAL INFORMATION (2)
PERSONAL INFORMATION (2)Sherif Ouija
 
Octal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering SystemsOctal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering Systems
Leo Hernandez
 

Viewers also liked (18)

How to use vlookup & simple formula's for inventory
How to use vlookup & simple  formula's for inventoryHow to use vlookup & simple  formula's for inventory
How to use vlookup & simple formula's for inventory
 
Functions and formulas of ms excel
Functions and formulas of ms excelFunctions and formulas of ms excel
Functions and formulas of ms excel
 
MS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATIONMS EXCEL PPT PRESENTATION
MS EXCEL PPT PRESENTATION
 
03 Excel formulas and functions
03 Excel formulas and functions03 Excel formulas and functions
03 Excel formulas and functions
 
Pivot table
Pivot tablePivot table
Pivot table
 
Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'Working on MS-Excel 'FORMULA TAB'
Working on MS-Excel 'FORMULA TAB'
 
Conditional statement
Conditional statementConditional statement
Conditional statement
 
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
 
Pivot table presentation
Pivot table presentationPivot table presentation
Pivot table presentation
 
Basic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 TutorialBasic Formulas - Excel 2013 Tutorial
Basic Formulas - Excel 2013 Tutorial
 
Lesson 4 excel formula
Lesson 4  excel formulaLesson 4  excel formula
Lesson 4 excel formula
 
Riflessione Metacognitiva finale - gruppo docenti Caivano
Riflessione Metacognitiva finale -  gruppo docenti CaivanoRiflessione Metacognitiva finale -  gruppo docenti Caivano
Riflessione Metacognitiva finale - gruppo docenti Caivano
 
M.S EXCEL
M.S EXCELM.S EXCEL
M.S EXCEL
 
Tuyen sinh trung cap y duoc tphcm
Tuyen sinh trung cap y duoc tphcmTuyen sinh trung cap y duoc tphcm
Tuyen sinh trung cap y duoc tphcm
 
Creating relationships with tables
Creating relationships with tablesCreating relationships with tables
Creating relationships with tables
 
Microsoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guideMicrosoft Access 2010 - a jargon free guide
Microsoft Access 2010 - a jargon free guide
 
PERSONAL INFORMATION (2)
PERSONAL INFORMATION (2)PERSONAL INFORMATION (2)
PERSONAL INFORMATION (2)
 
Octal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering SystemsOctal and Hexadecimal Numbering Systems
Octal and Hexadecimal Numbering Systems
 

Similar to 10 Excel Formulas that will help you in any Job

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
zavenger
 
Excel basics for everyday use-the more advanced stuff
Excel basics for everyday use-the more advanced stuffExcel basics for everyday use-the more advanced stuff
Excel basics for everyday use-the more advanced stuff
Kevin McLogan
 
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
DevadattaSai Cheedella
 
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
AlexHenderson59
 
Excel basics for everyday use part three
Excel basics for everyday use part threeExcel basics for everyday use part three
Excel basics for everyday use part threeKevin McLogan
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
elsagalgao
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
Ektasingh152981
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
Ektasingh152981
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
SumitBhargavGhadge
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptx
EdwinAdeolaOluwasina1
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The Beginners
Stat Analytica
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
CristineJoyVillajuan
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5
Jesus Rances
 
Excel for research
Excel  for researchExcel  for research
Excel for research
JamalBhai
 
Excel functionssimplymeasured
Excel functionssimplymeasuredExcel functionssimplymeasured
Excel functionssimplymeasured
central.zone
 
ICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - TutorialICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - Tutorial
Michael Lew
 
Office technology
Office technology Office technology
Office technology
SalwaRegina
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
AllanGuevarra1
 
Commonly used excel formulas
Commonly used excel formulasCommonly used excel formulas
Commonly used excel formulas
saladi330
 
Commonly used excel formulas
Commonly used excel formulasCommonly used excel formulas
Commonly used excel formulas
saladi330
 

Similar to 10 Excel Formulas that will help you in any Job (20)

Introduction to excel - application to statistics
Introduction to excel - application to statisticsIntroduction to excel - application to statistics
Introduction to excel - application to statistics
 
Excel basics for everyday use-the more advanced stuff
Excel basics for everyday use-the more advanced stuffExcel basics for everyday use-the more advanced stuff
Excel basics for everyday use-the more advanced stuff
 
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters Advanced Excel formulas, v look up, count, count if, pivot tables, filters
Advanced Excel formulas, v look up, count, count if, pivot tables, filters
 
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
 
Excel basics for everyday use part three
Excel basics for everyday use part threeExcel basics for everyday use part three
Excel basics for everyday use part three
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
Introduction_Excel.ppt
Introduction_Excel.pptIntroduction_Excel.ppt
Introduction_Excel.ppt
 
CBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptxCBN Advanced Excel Training Slide.pptx
CBN Advanced Excel Training Slide.pptx
 
Excel Top 10 formula For The Beginners
Excel Top 10 formula For The BeginnersExcel Top 10 formula For The Beginners
Excel Top 10 formula For The Beginners
 
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptxLesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
Lesson 10 FUNCTIONS AND FORMULAS IN AN E.pptx
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5
 
Excel for research
Excel  for researchExcel  for research
Excel for research
 
Excel functionssimplymeasured
Excel functionssimplymeasuredExcel functionssimplymeasured
Excel functionssimplymeasured
 
ICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - TutorialICDL Advanced Excel 2010 - Tutorial
ICDL Advanced Excel 2010 - Tutorial
 
Office technology
Office technology Office technology
Office technology
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Commonly used excel formulas
Commonly used excel formulasCommonly used excel formulas
Commonly used excel formulas
 
Commonly used excel formulas
Commonly used excel formulasCommonly used excel formulas
Commonly used excel formulas
 

Recently uploaded

Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 

Recently uploaded (20)

Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 

10 Excel Formulas that will help you in any Job

  • 1. Excel Formulas 10 Formulas that helps you in any JOB
  • 2. Presentation Flow 1. SUM Formula 2. Count Formula 3. Count A Formula 4. LEN Function 5. TRIM Function 6. RIGHT, LEFT and MID Function 7. VLOOKUP 8. IF Statements 9. SUMIF, COUNTIF AND AVERAGEIF 10. CONCATENATE Function Private and Confidential - By Hitesh Biyani
  • 3. SUM FORMULA • The SUM formula does exactly what you would expect. It allows you to add 2 or more numbers together • Formula : =SUM(5,5) or =SUM(A1, B1) or =SUM(A1:B5) • The above shows you different examples. You can have numbers in there separated by commas and it will add them together for you, you can have cell references and as long as there are numbers in those cells it will add them together for you, or you can have a range of cells with a colon in between the 2 cells, and it will add the numbers in all the cells in the range. • Keyboard Shortcuts: ALT + = (equal to sign) : The Shortcut automatically selects the range of cells above the formula upto an empty cell. If used after applying a filter on a column, this shortcut will give subtotal of the filtered values for that column Shortcut : ALT + = Private and Confidential - By Hitesh Biyani
  • 4. COUNT Formula • The count formula counts the number of cells in a range that have numbers in them • This formula only works with numbers though, It only counts the cells where there are numbers • Formula : =Count(A1:A10) Private and Confidential - By Hitesh Biyani
  • 5. COUNTA Formula • Counts the number of non-empty cells in a range. It will count cells that have numbers and/or any other characters in them • Formula: =COUNTA(A1:A10) • It counts the number of non-empty cells no matter the data type. Private and Confidential - By Hitesh Biyani
  • 6. LEN Function • The LEN formula counts the number of characters in a cell. Be careful though! This includes spaces. • Formula : =LEN(A1) • Notice the difference in the formula results: 10 characters without spaces in between the words, 12 with spaces between the words. Private and Confidential - By Hitesh Biyani
  • 7. TRIM Function • Useful for removing extra spaces in a cell whether at beginning, trailing or anywhere between the words. • Often when you pull data from a database you may find some extra spaces are put in behind or in front of legitimate data. • This can wreak havoc if you are trying to compare using IF statements or VLOOKUP’s. • Formula: =TRIM(A1) • I added in an extra space behind “I Love Excel”. The TRIM formula removes that extra space. Check out the character count difference with and without the TRIM formula. Private and Confidential - By Hitesh Biyani
  • 8. RIGHT, LEFT and MID function • These Formulas return the specified number of characters from a text string • Right gives you the number of specified characters from right of a text string • Left gives you the number of specified characters from left of a text string • MID gives you the number of specified characters from middle of a text string • Formula: =RIGHT(Text or Cell reference, number of characters), = LEFT(Text or Cell reference, number of characters) and =MID(Text or Cell reference, Start Number, number of characters) I used the LEFT formula to get the first word. I had it look in cell A1 and grab only the 1st character from the left. This gave us the word “I” from “I love Excel” I used the MID formula to get the middle word. I had it look in cell A1, start at character 3, and grab 5 characters after that. This gives us just the word “love” from “I love Excel” I used the RIGHT formula to get the last word. I had it look at cell A1 and grab the first 5 characters from the right. This gives us “Excel” from “I love Excel” Private and Confidential - By Hitesh Biyani
  • 9. VLOOKUP Function • By far the most used function in day to day operations of many businesses • What it Does : Looks for a value in another table or array and returns value in the same row from a column you specify • In Simple terms, it does a find action of a value from one sheet or table or file in another sheet or table or file and copies the value corresponding to that value from the column specified in the formula • Formula: =Vlookup(lookup_value, table_array, col_index_num, range_lookup) • Let’s Break the above formula in 4 parts – a. Lookup_Value = This is the field that has common references / values to other file which has more details b. Table_Array = This is the range that you select from another file or sheet or table starting from the column which has common references / values to the lookup_value as defined in (a) above c. Col_index_num = This is the column reference number from which you wish to pick values against the lookup value as defined in (a) above d. range_lookup = This is used to derive approximate or exact match. “0” or “False” value will provide an exact match whereas “1” or “True” value will provide an approximate match Private and Confidential - By Hitesh Biyani
  • 10. VLOOKUP Function (Contd..) • Example • In this example, I am attempting to create Master List from List 1 and List 2 using Sales ID Person as my “Lookup _value” • Some Points to remember, a. For a vlookup function, there always need to be a common field with common values which is referred to as “lookup_value”. b. It can be read like this while attempting the formula, lookup “x” in this range i.e. “x:y” and pick up “y” and do an exact match i.e. “False” or “0” Lookup_value Col_index_num Range_lookupTable_Array Private and Confidential - By Hitesh Biyani
  • 11. IF Statements • This again is most used formula for a lot of analytical scenarios where a data has to react differently based on different situations • Formula: =IF(logical_test, value_if_true, value_if_false) • Logical Statements may include comparison of one value to another using “>”, “<“, “=“, “OR”, “AND”, etc • In simple terms, it looks if the logical statement returns a true value or false value and accordingly, user can define the value to be displayed if the result is true and and value to be displayed if result is false. So basically it has 3 parts i.e. IF (logical test), THEN (if true) and ELSE (If not true) • Let’s Break the above formula in 3 parts – a. Logical Statement – Usually a comparison statement using Logical Operators b. True value – If the answer to the logical statement is true, the value specified for true value will be returned c. False Value - If the answer to the logical statement is false, the value specified for false value will be returned • Example Private and Confidential - By Hitesh Biyani
  • 12. IF Statements(Contd…) • If Statement is a very powerful formula which can be used to derive results of complex problems. It can be used to avoid multiple steps while working on a worksheet and instead can give result in one shot. This can be done using Nested IF Statements. This is covered in our Advanced Excel Program • Example of a Nested IF Statement • =if(logical_test, value_if_true, if(logical_test, value_if_true, if(logical_test, so on and so forth) • Nested IF always has a new IF Statement for False value. This argument can be continued till all the situations are covered. This statement is useful for defining Age Buckets • =if(age<7, “0-7”,if(7<age<15, “8-15”, if(15<age<30, “16-30”, if(30<age<60, “31-60”, “60 and above”)))) • There is one more version of IF Statements named IFERROR • This formula will be triggered if the other formulas wind up giving you an error. It could look something like #N/A and that’s pretty ugly. This can happen for legitimate reasons, but you don’t want to hand your boss a sheet full of #N/A symbols • In the above example to avoid #N/A values, below formula can be used • =iferror(if(age<7, “0-7”,if(7<age<15, “8-15”, if(15<age<30, “16-30”, if(30<age<60, “31-60”, “60 and above”)))),””) Private and Confidential - By Hitesh Biyani
  • 13. SUMIF, COUNTIF AND AVERAGEIF • These Formulas do their respective functions i.e. if the criteria are met • Formulas: =SUMIF(Range, Criteria, Sum_Range) | =COUNTIF(Range, Criteria) | =AVERAGEIF(Range, Criteria, Average_Range) • In Simple Terms, it provides a sum of values within cells, count of cells and average of values within cells for the criteria if satisfied • Examples Range Criteria Sum_Range Average_Range Private and Confidential - By Hitesh Biyani
  • 14. CONCATENATE • Simple yet a very effective and useful formula for many day-to-day operations in office. • This Formula is also denoted by Ampersand (&) Sign and it is used for joining the values in difference cells • Many a times, we get a database where we feel the need to combine 2 columns or 2 fields, this formula helps you achieve that in no time. • Example • In the above example, I have used Concatenate formula in Column D to derive Full Names from the information given in Columns A, B and C • Formula: = Concatenate(A2, “ ”, B2, “ ”, C2) OR =A2&“ ”&B2&“ ”&C2. • In the above formula, I have combined the First Name, Middle Name and Surname with Spaces between each of them. The SPACE or any Text has to be denoted in “Quotation” Marks to be reflected in the result Private and Confidential - By Hitesh Biyani