SlideShare a Scribd company logo
1 of 7
Download to read offline
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

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..docxpaynetawnya
 
Day2 session i&amp;ii - spss
Day2 session i&amp;ii - spssDay2 session i&amp;ii - spss
Day2 session i&amp;ii - spssabir hossain
 
Excel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFSExcel tip: COUNTIF and COUNTIFS
Excel tip: COUNTIF and COUNTIFSStefania Borchia
 
Training excel
Training  excelTraining  excel
Training excelRavi Rai
 
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 .docxcockekeshia
 
Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Empowerment Technologies - Module 5
Empowerment Technologies - Module 5Jesus Rances
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptAllanGuevarra1
 
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).pptAjithGhoyal
 
MIS 226: Chapter 2
MIS 226: Chapter 2MIS 226: Chapter 2
MIS 226: Chapter 2macrob14
 
3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.ppt3 Formulas, Ranges, Functions.ppt
3 Formulas, Ranges, Functions.pptJosephIThomas
 
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchOn if,countif,countifs,sumif,countifs,lookup,v lookup,index,match
On if,countif,countifs,sumif,countifs,lookup,v lookup,index,matchRakesh Sah
 

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
 
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
 
Excellence with excel
Excellence with excelExcellence with excel
Excellence with excel
 

Recently uploaded

代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...ThinkInnovation
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Callshivangimorya083
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)jennyeacort
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024thyngster
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一fhwihughh
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一F La
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAbdelrhman abooda
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Jack DiGiovanna
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDRafezzaman
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...soniya singh
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfgstagge
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxFurkanTasci3
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptxthyngster
 

Recently uploaded (20)

代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
 
Decoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in ActionDecoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in Action
 
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
꧁❤ Greater Noida Call Girls Delhi ❤꧂ 9711199171 ☎️ Hard And Sexy Vip Call
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
Call Us ➥97111√47426🤳Call Girls in Aerocity (Delhi NCR)
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024
 
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
办理学位证纽约大学毕业证(NYU毕业证书)原版一比一
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
办理(Vancouver毕业证书)加拿大温哥华岛大学毕业证成绩单原版一比一
 
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptxAmazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
Amazon TQM (2) Amazon TQM (2)Amazon TQM (2).pptx
 
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
Building on a FAIRly Strong Foundation to Connect Academic Research to Transl...
 
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTDINTERNSHIP ON PURBASHA COMPOSITE TEX LTD
INTERNSHIP ON PURBASHA COMPOSITE TEX LTD
 
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
High Class Call Girls Noida Sector 39 Aarushi 🔝8264348440🔝 Independent Escort...
 
RadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdfRadioAdProWritingCinderellabyButleri.pdf
RadioAdProWritingCinderellabyButleri.pdf
 
Data Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptxData Science Jobs and Salaries Analysis.pptx
Data Science Jobs and Salaries Analysis.pptx
 
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptxEMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM  TRACKING WITH GOOGLE ANALYTICS.pptx
EMERCE - 2024 - AMSTERDAM - CROSS-PLATFORM TRACKING WITH GOOGLE ANALYTICS.pptx
 

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