SlideShare a Scribd company logo
Excel Formulas
Basic math
Function Formula Example
To add up the total =SUM(cell range) =SUM(B2:B9)
To add individual items =Value1 + Value 2 =B2+C2
Subtract =Value1 - Value 2 =B2-C2
Multiply =Value1 * Value2 =B2*C2
Divide =Value1 / Value2 =B2/C2
Exponents =Value1 ^ Value2 =B2^C2
Average =AVERAGE(cell range) =AVERAGE(B2:B9)
Median =MEDIAN(cell range) =MEDIAN(B2:B9)
Max =MAX(cell range) =MAX(B2:B9)
Min =MIN(cell range) =MIN(B2:B9)
Simple formatting tricks
Function Formula Example
To change a cell to proper
case
=PROPER(cell) =PROPER(A2)
To change a cell to upper
case
=UPPER(cell) =UPPER(A2)
To change a cell to lower
case
=LOWER(cell) =LOWER(A2)
Conditional statements
Function Formula Example
If statement =IF(logical test, “result if
the test answer is true”,
“result if the test answer is
false”)
=IF(B2>69,”Pass”,”Fail”)
Exact =EXACT(Value1, value2) =EXACT(B2, C2)
Absolute cell references
When a formula contains an absolute reference, no matter which cell the formula
occupies the cell reference does not change: if you copy or move the formula, it refers
to the same cell as it did in its original location. In an absolute reference, each part of
the reference (the letter that refers to the row and the number that refers to the column)
is preceded by a “$” – for example, $A$1 is an absolute reference to cell A1. Wherever
the formula is copied or moved, it always refers to cell A1.
Pulling things apart
Function Formula Example
To select a certain number
of characters from the left
=LEFT(cellwithtext,
number of characters to be
returned)
=LEFT(A2, 6)
To select a certain number
of characters from the right
=RIGHT(cellwithtext,
number of characters to be
returned)
=RIGHT(A2, 6)
Find text in a field =SEARCH(“text you want
to find”, where you want to
find it)
=SEARCH(“,”, A2)
Extract information from
the middle
=MID(cellwithtext, start
position, number of
characters you want
returned)
=MID(A2, 9, 4)
Separate a last name
(Example: Smith, Jane)
LEFT and SEARCH
functions
=LEFT(A2, SEARCH(“,”,
A2)‐1)
Separate a first name
(Example: Smith, Jane)
MID and SEARCH
functions
=MID(A2, SEARCH(“,”,
A2)+2, 20)
Putting things together
Function Formula Example
To combine cells with a
space in-between
=CONCATENATE(text, “ ”,
text)
=CONCATENATE(A2, “ “,
B2)
To combine cells with a
space in-between (second
option)
=text & “ “ & text =A2 & “ “ & B2
Dealing with dates
Function Formula Example
Return the year =YEAR(datefield) =YEAR(A2)
Return the month =MONTH(datefield) =MONTH(A2)
Return the day =DAY(datefield) =DAY(A2)
Return the day of the week
(1 = Sunday, 2 = Monday,
3 = Tuesday, etc.)
=WEEKDAY(datefield) =WEEKDAY(A2)
To create a date from year,
month, and day
=DATE(year, month, day) =DATE(B2, C2, D2)

More Related Content

What's hot

Sql Tags
Sql TagsSql Tags
Join query
Join queryJoin query
Join query
Waqar Ali
 
SQL Tutorial for Beginners
SQL Tutorial for BeginnersSQL Tutorial for Beginners
SQL Tutorial for Beginners
Abdelhay Shafi
 
Ms excel 2003 intermediate
Ms excel 2003 intermediateMs excel 2003 intermediate
Ms excel 2003 intermediate
Jason Wong
 
Types Of Join In Sql Server - Join With Example In Sql Server
Types Of Join In Sql Server - Join With Example In Sql ServerTypes Of Join In Sql Server - Join With Example In Sql Server
Types Of Join In Sql Server - Join With Example In Sql Server
programmings guru
 
Sets
SetsSets
Sql join
Sql  joinSql  join
Sql join
Vikas Gupta
 
Sql joins
Sql joinsSql joins
Sql joins
Gaurav Dhanwant
 
Set concepts
Set conceptsSet concepts
joins in database
 joins in database joins in database
joins in database
Sultan Arshad
 
Join sql
Join sqlJoin sql
Join sql
Vikas Gupta
 
Join
JoinJoin
SQL Joinning.Database
SQL Joinning.DatabaseSQL Joinning.Database
SQL Joinning.Database
Umme habiba
 
Oracle: Joins
Oracle: JoinsOracle: Joins
Oracle: Joins
DataminingTools Inc
 
Pre-Cal 20S January 14, 2009
Pre-Cal 20S January 14, 2009Pre-Cal 20S January 14, 2009
Pre-Cal 20S January 14, 2009
Darren Kuropatwa
 
Alg2 lesson 7-8
Alg2 lesson 7-8Alg2 lesson 7-8
Alg2 lesson 7-8
Carol Defreese
 
Alg2 lesson 7-8
Alg2 lesson 7-8Alg2 lesson 7-8
Alg2 lesson 7-8
Carol Defreese
 
Mysql Statments
Mysql StatmentsMysql Statments
Mysql Statments
SHC
 

What's hot (18)

Sql Tags
Sql TagsSql Tags
Sql Tags
 
Join query
Join queryJoin query
Join query
 
SQL Tutorial for Beginners
SQL Tutorial for BeginnersSQL Tutorial for Beginners
SQL Tutorial for Beginners
 
Ms excel 2003 intermediate
Ms excel 2003 intermediateMs excel 2003 intermediate
Ms excel 2003 intermediate
 
Types Of Join In Sql Server - Join With Example In Sql Server
Types Of Join In Sql Server - Join With Example In Sql ServerTypes Of Join In Sql Server - Join With Example In Sql Server
Types Of Join In Sql Server - Join With Example In Sql Server
 
Sets
SetsSets
Sets
 
Sql join
Sql  joinSql  join
Sql join
 
Sql joins
Sql joinsSql joins
Sql joins
 
Set concepts
Set conceptsSet concepts
Set concepts
 
joins in database
 joins in database joins in database
joins in database
 
Join sql
Join sqlJoin sql
Join sql
 
Join
JoinJoin
Join
 
SQL Joinning.Database
SQL Joinning.DatabaseSQL Joinning.Database
SQL Joinning.Database
 
Oracle: Joins
Oracle: JoinsOracle: Joins
Oracle: Joins
 
Pre-Cal 20S January 14, 2009
Pre-Cal 20S January 14, 2009Pre-Cal 20S January 14, 2009
Pre-Cal 20S January 14, 2009
 
Alg2 lesson 7-8
Alg2 lesson 7-8Alg2 lesson 7-8
Alg2 lesson 7-8
 
Alg2 lesson 7-8
Alg2 lesson 7-8Alg2 lesson 7-8
Alg2 lesson 7-8
 
Mysql Statments
Mysql StatmentsMysql Statments
Mysql Statments
 

Similar to Excel formulas

Excel formulas-a-quick-list
Excel formulas-a-quick-listExcel formulas-a-quick-list
Excel formulas-a-quick-list
Narendra Chaurasia
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
Rakesh Nimhan
 
Excel formula
Excel formulaExcel formula
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
Elli May Cañas
 
Excel presentation
Excel presentationExcel presentation
Excel presentation
danish sherazi
 
seleceted text for logical functions in microisoift excel
seleceted text for logical functions in microisoift excelseleceted text for logical functions in microisoift excel
seleceted text for logical functions in microisoift excel
RaizaCalimagPanganib
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
wildman099
 
Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
BBAMUMU2014
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
Jason Hando
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
Jason Hando
 
04.formula and fuction
04.formula and fuction04.formula and fuction
04.formula and fuction
Steven Alphonce
 
Excle formula
Excle formulaExcle formula
Excle formula
Usman Khawaja
 
Mtk3013 chapter 2-3
Mtk3013   chapter 2-3Mtk3013   chapter 2-3
Mtk3013 chapter 2-3
khairunnasirahmad
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
LinkedIn Learning Solutions
 
Excel (E-Module 2)
Excel (E-Module 2)Excel (E-Module 2)
Excel (E-Module 2)
neha_gulati_ubs
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
argusacademy
 
Excel advanced formulas and functions i-school tutorials
Excel  advanced formulas and functions   i-school tutorialsExcel  advanced formulas and functions   i-school tutorials
Excel advanced formulas and functions i-school tutorials
techie_govind
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
Rahul Singhal
 
Computer skills excel2010 3
Computer skills excel2010 3Computer skills excel2010 3
Computer skills excel2010 3
zahraa F.Muhsen
 
Lesson
LessonLesson
Lesson
sajidamehr
 

Similar to Excel formulas (20)

Excel formulas-a-quick-list
Excel formulas-a-quick-listExcel formulas-a-quick-list
Excel formulas-a-quick-list
 
cheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdfcheatsheet from DataCamp.pdf
cheatsheet from DataCamp.pdf
 
Excel formula
Excel formulaExcel formula
Excel formula
 
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 presentation
Excel presentationExcel presentation
Excel presentation
 
seleceted text for logical functions in microisoift excel
seleceted text for logical functions in microisoift excelseleceted text for logical functions in microisoift excel
seleceted text for logical functions in microisoift excel
 
Excel lesson formulas and functions
Excel lesson formulas and functionsExcel lesson formulas and functions
Excel lesson formulas and functions
 
Spreadsheets[1]
Spreadsheets[1]Spreadsheets[1]
Spreadsheets[1]
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
04.formula and fuction
04.formula and fuction04.formula and fuction
04.formula and fuction
 
Excle formula
Excle formulaExcle formula
Excle formula
 
Mtk3013 chapter 2-3
Mtk3013   chapter 2-3Mtk3013   chapter 2-3
Mtk3013 chapter 2-3
 
Mastering Excel Formulas and Functions
Mastering Excel Formulas and FunctionsMastering Excel Formulas and Functions
Mastering Excel Formulas and Functions
 
Excel (E-Module 2)
Excel (E-Module 2)Excel (E-Module 2)
Excel (E-Module 2)
 
Microsoft excel
Microsoft excelMicrosoft excel
Microsoft excel
 
Excel advanced formulas and functions i-school tutorials
Excel  advanced formulas and functions   i-school tutorialsExcel  advanced formulas and functions   i-school tutorials
Excel advanced formulas and functions i-school tutorials
 
Excel.useful fns
Excel.useful fnsExcel.useful fns
Excel.useful fns
 
Computer skills excel2010 3
Computer skills excel2010 3Computer skills excel2010 3
Computer skills excel2010 3
 
Lesson
LessonLesson
Lesson
 

More from Educational Learner

study room
study room study room
study room
Educational Learner
 
Tv panel design
Tv panel designTv panel design
Tv panel design
Educational Learner
 
bed room
bed roombed room
Tv panel design
Tv panel designTv panel design
Tv panel design
Educational Learner
 
DOCUMENT SELECTION AND ACQUISITION
DOCUMENT SELECTION AND ACQUISITIONDOCUMENT SELECTION AND ACQUISITION
DOCUMENT SELECTION AND ACQUISITION
Educational Learner
 
LIBRARY STAFF: ROLES AND RESPONSIBILITIES
LIBRARY STAFF: ROLES AND RESPONSIBILITIESLIBRARY STAFF: ROLES AND RESPONSIBILITIES
LIBRARY STAFF: ROLES AND RESPONSIBILITIES
Educational Learner
 
FUNCTIONAL UNITS AND OPERATIONAL ASPECTS
FUNCTIONAL UNITS AND OPERATIONAL ASPECTSFUNCTIONAL UNITS AND OPERATIONAL ASPECTS
FUNCTIONAL UNITS AND OPERATIONAL ASPECTS
Educational Learner
 
Types of Libraries and their functions
Types of Libraries and their functionsTypes of Libraries and their functions
Types of Libraries and their functions
Educational Learner
 
Role of Libraries in society
Role of Libraries in societyRole of Libraries in society
Role of Libraries in society
Educational Learner
 
Evaluation by Information Education
Evaluation by Information EducationEvaluation by Information Education
Evaluation by Information Education
Educational Learner
 
Indian science congress association
Indian science congress associationIndian science congress association
Indian science congress association
Educational Learner
 
Elements of Interior Designing
Elements of Interior DesigningElements of Interior Designing
Elements of Interior Designing
Educational Learner
 
Air conditioning system
Air conditioning system Air conditioning system
Air conditioning system
Educational Learner
 
Mercedes amg g63
Mercedes amg g63Mercedes amg g63
Mercedes amg g63
Educational Learner
 
False ceiling
False ceiling False ceiling
False ceiling
Educational Learner
 
type of cost Estimation
type of cost Estimationtype of cost Estimation
type of cost Estimation
Educational Learner
 
Acoustics
AcousticsAcoustics
Acoustic conference room
Acoustic conference roomAcoustic conference room
Acoustic conference room
Educational Learner
 
Acoustic materials
Acoustic materialsAcoustic materials
Acoustic materials
Educational Learner
 
Ctet paper 1 practice question of child development
Ctet paper 1 practice question of child developmentCtet paper 1 practice question of child development
Ctet paper 1 practice question of child development
Educational Learner
 

More from Educational Learner (20)

study room
study room study room
study room
 
Tv panel design
Tv panel designTv panel design
Tv panel design
 
bed room
bed roombed room
bed room
 
Tv panel design
Tv panel designTv panel design
Tv panel design
 
DOCUMENT SELECTION AND ACQUISITION
DOCUMENT SELECTION AND ACQUISITIONDOCUMENT SELECTION AND ACQUISITION
DOCUMENT SELECTION AND ACQUISITION
 
LIBRARY STAFF: ROLES AND RESPONSIBILITIES
LIBRARY STAFF: ROLES AND RESPONSIBILITIESLIBRARY STAFF: ROLES AND RESPONSIBILITIES
LIBRARY STAFF: ROLES AND RESPONSIBILITIES
 
FUNCTIONAL UNITS AND OPERATIONAL ASPECTS
FUNCTIONAL UNITS AND OPERATIONAL ASPECTSFUNCTIONAL UNITS AND OPERATIONAL ASPECTS
FUNCTIONAL UNITS AND OPERATIONAL ASPECTS
 
Types of Libraries and their functions
Types of Libraries and their functionsTypes of Libraries and their functions
Types of Libraries and their functions
 
Role of Libraries in society
Role of Libraries in societyRole of Libraries in society
Role of Libraries in society
 
Evaluation by Information Education
Evaluation by Information EducationEvaluation by Information Education
Evaluation by Information Education
 
Indian science congress association
Indian science congress associationIndian science congress association
Indian science congress association
 
Elements of Interior Designing
Elements of Interior DesigningElements of Interior Designing
Elements of Interior Designing
 
Air conditioning system
Air conditioning system Air conditioning system
Air conditioning system
 
Mercedes amg g63
Mercedes amg g63Mercedes amg g63
Mercedes amg g63
 
False ceiling
False ceiling False ceiling
False ceiling
 
type of cost Estimation
type of cost Estimationtype of cost Estimation
type of cost Estimation
 
Acoustics
AcousticsAcoustics
Acoustics
 
Acoustic conference room
Acoustic conference roomAcoustic conference room
Acoustic conference room
 
Acoustic materials
Acoustic materialsAcoustic materials
Acoustic materials
 
Ctet paper 1 practice question of child development
Ctet paper 1 practice question of child developmentCtet paper 1 practice question of child development
Ctet paper 1 practice question of child development
 

Recently uploaded

Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
MJDuyan
 
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
andagarcia212
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
Celine George
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 
220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science
Kalna College
 
adjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammaradjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammar
7DFarhanaMohammed
 
The basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptxThe basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptx
heathfieldcps1
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapitolTechU
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Kalna College
 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
Mohammad Al-Dhahabi
 
Data Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsxData Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsx
Prof. Dr. K. Adisesha
 
Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024
khabri85
 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Quiz Club IIT Kanpur
 
Observational Learning
Observational Learning Observational Learning
Observational Learning
sanamushtaq922
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
Kalna College
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
nitinpv4ai
 
Simple-Present-Tense xxxxxxxxxxxxxxxxxxx
Simple-Present-Tense xxxxxxxxxxxxxxxxxxxSimple-Present-Tense xxxxxxxxxxxxxxxxxxx
Simple-Present-Tense xxxxxxxxxxxxxxxxxxx
RandolphRadicy
 
Creation or Update of a Mandatory Field is Not Set in Odoo 17
Creation or Update of a Mandatory Field is Not Set in Odoo 17Creation or Update of a Mandatory Field is Not Set in Odoo 17
Creation or Update of a Mandatory Field is Not Set in Odoo 17
Celine George
 

Recently uploaded (20)

Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
 
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
欧洲杯下注-欧洲杯下注押注官网-欧洲杯下注押注网站|【​网址​🎉ac44.net🎉​】
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 
220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science
 
adjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammaradjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammar
 
The basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptxThe basics of sentences session 7pptx.pptx
The basics of sentences session 7pptx.pptx
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
 
Data Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsxData Structure using C by Dr. K Adisesha .ppsx
Data Structure using C by Dr. K Adisesha .ppsx
 
Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024
 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
 
Observational Learning
Observational Learning Observational Learning
Observational Learning
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
 
Simple-Present-Tense xxxxxxxxxxxxxxxxxxx
Simple-Present-Tense xxxxxxxxxxxxxxxxxxxSimple-Present-Tense xxxxxxxxxxxxxxxxxxx
Simple-Present-Tense xxxxxxxxxxxxxxxxxxx
 
Creation or Update of a Mandatory Field is Not Set in Odoo 17
Creation or Update of a Mandatory Field is Not Set in Odoo 17Creation or Update of a Mandatory Field is Not Set in Odoo 17
Creation or Update of a Mandatory Field is Not Set in Odoo 17
 

Excel formulas

  • 1. Excel Formulas Basic math Function Formula Example To add up the total =SUM(cell range) =SUM(B2:B9) To add individual items =Value1 + Value 2 =B2+C2 Subtract =Value1 - Value 2 =B2-C2 Multiply =Value1 * Value2 =B2*C2 Divide =Value1 / Value2 =B2/C2 Exponents =Value1 ^ Value2 =B2^C2 Average =AVERAGE(cell range) =AVERAGE(B2:B9) Median =MEDIAN(cell range) =MEDIAN(B2:B9) Max =MAX(cell range) =MAX(B2:B9) Min =MIN(cell range) =MIN(B2:B9) Simple formatting tricks Function Formula Example To change a cell to proper case =PROPER(cell) =PROPER(A2) To change a cell to upper case =UPPER(cell) =UPPER(A2) To change a cell to lower case =LOWER(cell) =LOWER(A2) Conditional statements Function Formula Example If statement =IF(logical test, “result if the test answer is true”, “result if the test answer is false”) =IF(B2>69,”Pass”,”Fail”) Exact =EXACT(Value1, value2) =EXACT(B2, C2) Absolute cell references When a formula contains an absolute reference, no matter which cell the formula occupies the cell reference does not change: if you copy or move the formula, it refers to the same cell as it did in its original location. In an absolute reference, each part of the reference (the letter that refers to the row and the number that refers to the column) is preceded by a “$” – for example, $A$1 is an absolute reference to cell A1. Wherever the formula is copied or moved, it always refers to cell A1.
  • 2. Pulling things apart Function Formula Example To select a certain number of characters from the left =LEFT(cellwithtext, number of characters to be returned) =LEFT(A2, 6) To select a certain number of characters from the right =RIGHT(cellwithtext, number of characters to be returned) =RIGHT(A2, 6) Find text in a field =SEARCH(“text you want to find”, where you want to find it) =SEARCH(“,”, A2) Extract information from the middle =MID(cellwithtext, start position, number of characters you want returned) =MID(A2, 9, 4) Separate a last name (Example: Smith, Jane) LEFT and SEARCH functions =LEFT(A2, SEARCH(“,”, A2)‐1) Separate a first name (Example: Smith, Jane) MID and SEARCH functions =MID(A2, SEARCH(“,”, A2)+2, 20) Putting things together Function Formula Example To combine cells with a space in-between =CONCATENATE(text, “ ”, text) =CONCATENATE(A2, “ “, B2) To combine cells with a space in-between (second option) =text & “ “ & text =A2 & “ “ & B2 Dealing with dates Function Formula Example Return the year =YEAR(datefield) =YEAR(A2) Return the month =MONTH(datefield) =MONTH(A2) Return the day =DAY(datefield) =DAY(A2) Return the day of the week (1 = Sunday, 2 = Monday, 3 = Tuesday, etc.) =WEEKDAY(datefield) =WEEKDAY(A2) To create a date from year, month, and day =DATE(year, month, day) =DATE(B2, C2, D2)