SlideShare a Scribd company logo
Excel Formulas Cheat Sheet
Page 1 of 7
Basic Formulas
Formula Structure Explanation
AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range
COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range
MAX =MAX(A2:A10) Finds the largest value in a given cell range
MEDIAN =MEDIAN(A2:A10) Returns the median value, or middle value, in a given cell range
MIN =MIN(A2:A10) Finds the smallest value in a given cell range
SUM =SUM(A2:A10) Totals numbers in a given cell range
Cell range A2:A10 is used above to indicate that each formula uses a cell range as it arguments
Time Formulas
Formula Structure Explanation
TODAY =TODAY() Volatile – takes no arguments – returns today’s date
NOW =NOW() Volatile – takes no arguments – returns today’s date and time
DATEDIF =DATEDIF(Start Date, End Date,
Unit)
Returns the number of years, months or days between two dates
 Start Date – date furthest in the past
 Unit could be “Y” for years, “M” for months or “D” for days
 Units must be in double quotes
 This formula is NOT in the function library
YEAR =YEAR(Date)  Returns the year portion of date
 Example =YEAR(7/16/2005) would return 2005
MONTH =MONTH(Date)  Returns the month portion of date
 Example =MONTH(7/16/2005) would return 7
DAY =DAY(Date)  Returns the day portion of date
 Example =DAY(7/16/2005) would return 16
Use a time formula and get an answer you didn’t expect? If you got a date and were expecting a number, remember to change the formatting
from date to number. If you got a number and were expecting a date, change the formatting to date.
Excel Formulas Cheat Sheet
Page 2 of 7
Logical Formulas
Formula Structure Explanation
IF =IF(Logical Test, TRUE, FALSE)  Evaluates the statement in the logical test to determine if it is TRUE or FALSE
 A Logical test compares the value of one cell to another, or a cell value to a
constant value, using a comparison operator such as:
o Equal  =
o Less than  <
o Greater than  >
o Less than or equal to  <=
o Greater than or equal to  >=
o Not equal to  <>
 TRUE – this part of the IF function will only execute when the logical test is TRUE
 FALSE – this part of the IF function will only execute when the logical test is FALSE
 Both TRUE and FALSE can be a word, a formula or a constant value
 To return a blank cell use two double quotes  “”
OR =OR(Logical Test 1, Logical Test
2, ...)
 This formula can only return TRUE or FALSE
 Only one test in the group must return TRUE for the formula to return TRUE
AND =AND(Logical Test 1, Logical
Test 2, ...)
 This formula can only return TRUE or FALSE
 Only one test in the group must return FALSE for the formula to return FALSE
Lookup Formulas
Formula Structure Explanation
VLOOKUP =VLOOKUP (Lookup Value, Table
Array, Col Index, Range Lookup)
 Lookup Value - What the function is looking for in the table array
 Table Array - The table defined as a cell range
 Col Index - The column in the table that forms the return
 Range lookup - False for exact match, True or blank for near match
 Notes:
o A vlookup can only search vertically through the left most column of a
table array for near or exact matches
o In most cases you will want to use absolute cell referencing when
indicating a table array
o If you omit the Range Lookup, Excel will assume “True” and look for a
near match
Excel Formulas Cheat Sheet
Page 3 of 7
Financial Formulas
Formula Structure Explanation
PMT = PMT(rate, nper, pv, [fv], [type])  rate – Annual Percentage Rate
o Divide yearly rate by 12 months
o REQUIRED
 nper – number of periods
o How many months are in the loan? (12 months/year) * length of loan in
years = length of loan in months
o REQUIRED
 pv – present value
o amount of loan – this is the amount that was borrowed
o REQUIRED
 [fv] and [type] are in square brackets because they're optional arguments.
o fv – future value - $0 if the loan is paid if full
 Excel assumes zero if omitted
o type –
 0 (zero) means the payments are due at the end of each period,
 1 means they're due at the beginning
 Excel assumes your payments are due at the end of the period if
omitted
Excel Formulas Cheat Sheet
Page 4 of 7
Statistical Formulas
Formula Structure Explanation
SUMIF = SUMIF(range, criteria,
[sum_range])
 SUMIF will return at total based on one criteria
 Range - Required. The range of cells that you want evaluated by criteria.
 Criteria - Required.
 The criteria in the form of a number, expression, a cell reference, text, or a
function that defines which cells will be added.
 For example, criteria can be expressed as 32, ">32", B5, "32", "apples", or
TODAY().
 Important: Any text criteria or any criteria that includes logical or mathematical
symbols must be enclosed in double quotation marks ("). If the criteria is
numeric, double quotation marks are not required.
 Sum_Range Optional.
o The actual cells to add, if you want to add cells other than those
specified in the range argument.
o If the sum_range argument is omitted, Excel adds the cells that are
specified in the range argument (the same cells to which the criteria is
applied).
SUMIFS =SUMIFS(sum_range,
criteria_range1, criteria1,
[criteria_range2, criteria2], ...)
 SUMIFS will return at total based on more than one criteria
 Sum_Range - The range of cells to sum
 Criteria_range1 – Required
o The range that is tested using Criteria1
 Criteria1 – Required
o The first value tested for – this must be a match to be included in the
total
 Criteria_range2 – Optional
o The range that is tested using Criteria2
 Criteria2 – Optional
o The second value tested for – this must be a match to be included in the
total
 And so on…
Excel Formulas Cheat Sheet
Page 5 of 7
Formula Structure Explanation
COUNTIF =COUNTIF(range, criteria)  Answers the question “How many of something (criteria) exist within specific set
of cells (range)?
 =COUNTIF(Where do you want to look?, What do you want to look for?)
 Range – Required – Sets cells to be included in the count
 Criteria – Required – Tells formula what to look for
COUNTIFS =COUNTIFS(criteria_range1,
criteria1, [criteria_range2,
criteria2]…)
 criteria_range1 – Required.
o The first range in which to evaluate the associated criteria.
 criteria1 – Required.
o The criteria in the form of a number, expression, cell reference, or text
that define which cells will be counted. For example, criteria can be
expressed as:
 32,
 ">32",
 B4,
 "apples", or
 "32"
 criteria_range2, criteria2, ...
o Optional.
o Additional ranges and their associated criteria. Up to 127 range/criteria
pairs are allowed.
 Important:
o Each additional range must have the same number of rows and
columns as the criteria_range1 argument.
o The ranges do not have to be adjacent to each other
Excel Formulas Cheat Sheet
Page 6 of 7
Formula Structure Explanation
AVERAGEIF =AVERAGEIF(range, criteria,
[average_range])
 Returns the average (arithmetic mean) of all the cells in a range that meet a
given criteria
 Range – Required.
o One or more cells to average, including numbers or names, arrays, or
references that contain numbers.
 Criteria – Required.
o The criteria in the form of a number, expression, cell reference, or text
that defines which cells are averaged. For example, criteria can be
expressed as:
 32,
 ">32",
 B4,
 "apples", or
 "32"
 Average_range – Optional.
o The actual set of cells to average.
o If omitted, range is used
Excel Formulas Cheat Sheet
Page 7 of 7
Formula Structure Explanation
AVERAGEIFS = AVERAGEIFS(average_range,
criteria_range1, criteria1,
[criteria_range2, criteria2], ...)
 Returns the average (arithmetic mean) of all cells that meet multiple criteria
 Average_range – Required
o One or more cells to average, including numbers or names, arrays, or
references that contain numbers.
 Criteria_range1 – Required, subsequent criteria_ranges are optional (up to 127
ranges)
 criteria_range2, criteria_range3,… – Optional
 Criteria1 – Required, subsequent criteria are optional
o Criteria can be in the form of a number, expression, cell reference, or text
that define which cells will be averaged. For example, criteria can be
expressed as:
 32,
 ">32",
 B4,
 "apples", or
 "32"
 criteria2, criteria3,...
 If you have a Criteria_Range, you must have a corresponding Criteria

More Related Content

Similar to Formulas.pdf

Advance excel
Advance excelAdvance excel
Advance excel
SiddheshHadge
 
1. Outline the differences between Hoarding power and Encouraging..docx
1. Outline the differences between Hoarding power and Encouraging..docx1. Outline the differences between Hoarding power and Encouraging..docx
1. Outline the differences between Hoarding power and Encouraging..docx
paynetawnya
 
Cliff tip indexmatch_01
Cliff tip indexmatch_01Cliff tip indexmatch_01
Day2 session i&amp;ii - spss
Day2 session i&amp;ii - spssDay2 session i&amp;ii - spss
Day2 session i&amp;ii - spss
abir hossain
 
Excel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFSExcel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFS
Stefania Borchia
 
Training excel
Training  excelTraining  excel
Training excel
Ravi Rai
 
Lesson
LessonLesson
Lesson
sajidamehr
 
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docxWeek 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
cockekeshia
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5
Jesus Rances
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
AllanGuevarra1
 
Excel CH 02 Working with Formulas Functions.ppt
Excel CH 02 Working with Formulas Functions.pptExcel CH 02 Working with Formulas Functions.ppt
Excel CH 02 Working with Formulas Functions.ppt
EmmanuelOppongAfriyi1
 
Factorial Experiments
Factorial ExperimentsFactorial Experiments
Factorial Experiments
HelpWithAssignment.com
 
UNIT III - Arrays - Measures of Center and Variation (2).ppt
UNIT III - Arrays - Measures of Center and Variation (2).pptUNIT III - Arrays - Measures of Center and Variation (2).ppt
UNIT III - Arrays - Measures of Center and Variation (2).ppt
AjithGhoyal
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
macrob14
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
JosephIThomas
 
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
Rakesh Sah
 
stats
statsstats
stats
Aiden Yeh
 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
Sudipta Mazumder
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
Jason Hando
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
Jason Hando
 

Similar to Formulas.pdf (20)

Advance excel
Advance excelAdvance excel
Advance excel
 
1. Outline the differences between Hoarding power and Encouraging..docx
1. Outline the differences between Hoarding power and Encouraging..docx1. Outline the differences between Hoarding power and Encouraging..docx
1. Outline the differences between Hoarding power and Encouraging..docx
 
Cliff tip indexmatch_01
Cliff tip indexmatch_01Cliff tip indexmatch_01
Cliff tip indexmatch_01
 
Day2 session i&amp;ii - spss
Day2 session i&amp;ii - spssDay2 session i&amp;ii - spss
Day2 session i&amp;ii - spss
 
Excel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFSExcel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFS
 
Training excel
Training  excelTraining  excel
Training excel
 
Lesson
LessonLesson
Lesson
 
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docxWeek 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
Week 5 Lecture 14 The Chi Square TestQuite often, patterns of .docx
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
Excel CH 02 Working with Formulas Functions.ppt
Excel CH 02 Working with Formulas Functions.pptExcel CH 02 Working with Formulas Functions.ppt
Excel CH 02 Working with Formulas Functions.ppt
 
Factorial Experiments
Factorial ExperimentsFactorial Experiments
Factorial Experiments
 
UNIT III - Arrays - Measures of Center and Variation (2).ppt
UNIT III - Arrays - Measures of Center and Variation (2).pptUNIT III - Arrays - Measures of Center and Variation (2).ppt
UNIT III - Arrays - Measures of Center and Variation (2).ppt
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt
 
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
 
stats
statsstats
stats
 
Advanced Excel ppt
Advanced Excel pptAdvanced Excel ppt
Advanced Excel ppt
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 
Spreadhsheets 1
Spreadhsheets 1Spreadhsheets 1
Spreadhsheets 1
 

Recently uploaded

Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdfUdemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Fernanda Palhano
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
apvysm8
 
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
nyfuhyz
 
Analysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performanceAnalysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performance
roli9797
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
Social Samosa
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
g4dpvqap0
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
bopyb
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
Social Samosa
 
Experts live - Improving user adoption with AI
Experts live - Improving user adoption with AIExperts live - Improving user adoption with AI
Experts live - Improving user adoption with AI
jitskeb
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
AndrzejJarynowski
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
aqzctr7x
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
AlessioFois2
 
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
Timothy Spann
 
State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023
kuntobimo2016
 
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
74nqk8xf
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
v7oacc3l
 
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
g4dpvqap0
 
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
74nqk8xf
 
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
zsjl4mimo
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
javier ramirez
 

Recently uploaded (20)

Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdfUdemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
 
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
 
Analysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performanceAnalysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performance
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
 
Experts live - Improving user adoption with AI
Experts live - Improving user adoption with AIExperts live - Improving user adoption with AI
Experts live - Improving user adoption with AI
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
 
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
06-12-2024-BudapestDataForum-BuildingReal-timePipelineswithFLaNK AIM
 
State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023State of Artificial intelligence Report 2023
State of Artificial intelligence Report 2023
 
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
一比一原版(Chester毕业证书)切斯特大学毕业证如何办理
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
 
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证如何办理
 
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
一比一原版(牛布毕业证书)牛津布鲁克斯大学毕业证如何办理
 
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(Harvard毕业证书)哈佛大学毕业证如何办理
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
 

Formulas.pdf

  • 1. Excel Formulas Cheat Sheet Page 1 of 7 Basic Formulas Formula Structure Explanation AVERAGE =AVERAGE(A2:A10) Returns a mathematical average of a given cell range COUNT =COUNT(A2:A10) Returns the count of the numbers in given cell range MAX =MAX(A2:A10) Finds the largest value in a given cell range MEDIAN =MEDIAN(A2:A10) Returns the median value, or middle value, in a given cell range MIN =MIN(A2:A10) Finds the smallest value in a given cell range SUM =SUM(A2:A10) Totals numbers in a given cell range Cell range A2:A10 is used above to indicate that each formula uses a cell range as it arguments Time Formulas Formula Structure Explanation TODAY =TODAY() Volatile – takes no arguments – returns today’s date NOW =NOW() Volatile – takes no arguments – returns today’s date and time DATEDIF =DATEDIF(Start Date, End Date, Unit) Returns the number of years, months or days between two dates  Start Date – date furthest in the past  Unit could be “Y” for years, “M” for months or “D” for days  Units must be in double quotes  This formula is NOT in the function library YEAR =YEAR(Date)  Returns the year portion of date  Example =YEAR(7/16/2005) would return 2005 MONTH =MONTH(Date)  Returns the month portion of date  Example =MONTH(7/16/2005) would return 7 DAY =DAY(Date)  Returns the day portion of date  Example =DAY(7/16/2005) would return 16 Use a time formula and get an answer you didn’t expect? If you got a date and were expecting a number, remember to change the formatting from date to number. If you got a number and were expecting a date, change the formatting to date.
  • 2. Excel Formulas Cheat Sheet Page 2 of 7 Logical Formulas Formula Structure Explanation IF =IF(Logical Test, TRUE, FALSE)  Evaluates the statement in the logical test to determine if it is TRUE or FALSE  A Logical test compares the value of one cell to another, or a cell value to a constant value, using a comparison operator such as: o Equal  = o Less than  < o Greater than  > o Less than or equal to  <= o Greater than or equal to  >= o Not equal to  <>  TRUE – this part of the IF function will only execute when the logical test is TRUE  FALSE – this part of the IF function will only execute when the logical test is FALSE  Both TRUE and FALSE can be a word, a formula or a constant value  To return a blank cell use two double quotes  “” OR =OR(Logical Test 1, Logical Test 2, ...)  This formula can only return TRUE or FALSE  Only one test in the group must return TRUE for the formula to return TRUE AND =AND(Logical Test 1, Logical Test 2, ...)  This formula can only return TRUE or FALSE  Only one test in the group must return FALSE for the formula to return FALSE Lookup Formulas Formula Structure Explanation VLOOKUP =VLOOKUP (Lookup Value, Table Array, Col Index, Range Lookup)  Lookup Value - What the function is looking for in the table array  Table Array - The table defined as a cell range  Col Index - The column in the table that forms the return  Range lookup - False for exact match, True or blank for near match  Notes: o A vlookup can only search vertically through the left most column of a table array for near or exact matches o In most cases you will want to use absolute cell referencing when indicating a table array o If you omit the Range Lookup, Excel will assume “True” and look for a near match
  • 3. Excel Formulas Cheat Sheet Page 3 of 7 Financial Formulas Formula Structure Explanation PMT = PMT(rate, nper, pv, [fv], [type])  rate – Annual Percentage Rate o Divide yearly rate by 12 months o REQUIRED  nper – number of periods o How many months are in the loan? (12 months/year) * length of loan in years = length of loan in months o REQUIRED  pv – present value o amount of loan – this is the amount that was borrowed o REQUIRED  [fv] and [type] are in square brackets because they're optional arguments. o fv – future value - $0 if the loan is paid if full  Excel assumes zero if omitted o type –  0 (zero) means the payments are due at the end of each period,  1 means they're due at the beginning  Excel assumes your payments are due at the end of the period if omitted
  • 4. Excel Formulas Cheat Sheet Page 4 of 7 Statistical Formulas Formula Structure Explanation SUMIF = SUMIF(range, criteria, [sum_range])  SUMIF will return at total based on one criteria  Range - Required. The range of cells that you want evaluated by criteria.  Criteria - Required.  The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added.  For example, criteria can be expressed as 32, ">32", B5, "32", "apples", or TODAY().  Important: Any text criteria or any criteria that includes logical or mathematical symbols must be enclosed in double quotation marks ("). If the criteria is numeric, double quotation marks are not required.  Sum_Range Optional. o The actual cells to add, if you want to add cells other than those specified in the range argument. o If the sum_range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied). SUMIFS =SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)  SUMIFS will return at total based on more than one criteria  Sum_Range - The range of cells to sum  Criteria_range1 – Required o The range that is tested using Criteria1  Criteria1 – Required o The first value tested for – this must be a match to be included in the total  Criteria_range2 – Optional o The range that is tested using Criteria2  Criteria2 – Optional o The second value tested for – this must be a match to be included in the total  And so on…
  • 5. Excel Formulas Cheat Sheet Page 5 of 7 Formula Structure Explanation COUNTIF =COUNTIF(range, criteria)  Answers the question “How many of something (criteria) exist within specific set of cells (range)?  =COUNTIF(Where do you want to look?, What do you want to look for?)  Range – Required – Sets cells to be included in the count  Criteria – Required – Tells formula what to look for COUNTIFS =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…)  criteria_range1 – Required. o The first range in which to evaluate the associated criteria.  criteria1 – Required. o The criteria in the form of a number, expression, cell reference, or text that define which cells will be counted. For example, criteria can be expressed as:  32,  ">32",  B4,  "apples", or  "32"  criteria_range2, criteria2, ... o Optional. o Additional ranges and their associated criteria. Up to 127 range/criteria pairs are allowed.  Important: o Each additional range must have the same number of rows and columns as the criteria_range1 argument. o The ranges do not have to be adjacent to each other
  • 6. Excel Formulas Cheat Sheet Page 6 of 7 Formula Structure Explanation AVERAGEIF =AVERAGEIF(range, criteria, [average_range])  Returns the average (arithmetic mean) of all the cells in a range that meet a given criteria  Range – Required. o One or more cells to average, including numbers or names, arrays, or references that contain numbers.  Criteria – Required. o The criteria in the form of a number, expression, cell reference, or text that defines which cells are averaged. For example, criteria can be expressed as:  32,  ">32",  B4,  "apples", or  "32"  Average_range – Optional. o The actual set of cells to average. o If omitted, range is used
  • 7. Excel Formulas Cheat Sheet Page 7 of 7 Formula Structure Explanation AVERAGEIFS = AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)  Returns the average (arithmetic mean) of all cells that meet multiple criteria  Average_range – Required o One or more cells to average, including numbers or names, arrays, or references that contain numbers.  Criteria_range1 – Required, subsequent criteria_ranges are optional (up to 127 ranges)  criteria_range2, criteria_range3,… – Optional  Criteria1 – Required, subsequent criteria are optional o Criteria can be in the form of a number, expression, cell reference, or text that define which cells will be averaged. For example, criteria can be expressed as:  32,  ">32",  B4,  "apples", or  "32"  criteria2, criteria3,...  If you have a Criteria_Range, you must have a corresponding Criteria