Excel Formulas Cheat Sheet - Academic Web Pages

2y ago
52 Views
4 Downloads
352.87 KB
7 Pages
Last View : 2d ago
Last Download : 3m ago
Upload by : Mariam Herr
Transcription

Excel Formulas Cheat SheetBasic FormulasFormulaStructureExplanationAVERAGE AVERAGE(A2:A10)Returns a mathematical average of a given cell rangeCOUNT COUNT(A2:A10)Returns the count of the numbers in given cell rangeMAX MAX(A2:A10)Finds the largest value in a given cell rangeMEDIAN MEDIAN(A2:A10)Returns the median value, or middle value, in a given cell rangeMIN MIN(A2:A10)Finds the smallest value in a given cell rangeSUM SUM(A2:A10)Totals numbers in a given cell rangeCell range A2:A10 is used above to indicate that each formula uses a cell range as it argumentsTime FormulasFormulaTODAYNOWDATEDIFStructure TODAY() NOW() DATEDIF(Start Date, End Date,Unit)ExplanationVolatile – takes no arguments – returns today’s dateVolatile – takes no arguments – returns today’s date and timeReturns 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 libraryYEAR YEAR(Date) Returns the year portion of date Example YEAR(7/16/2005) would return 2005MONTH MONTH(Date) Returns the month portion of date Example MONTH(7/16/2005) would return 7DAY DAY(Date) Returns the day portion of date Example DAY(7/16/2005) would return 16Use 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 formattingfrom date to number. If you got a number and were expecting a date, change the formatting to date.Page 1 of 7

Excel Formulas Cheat SheetLogical FormulasFormulaIFStructure IF(Logical Test, TRUE, FALSE)Explanation 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 aconstant value, using a comparison operator such as:ooooooORAND OR(Logical Test 1, Logical Test2, .) AND(Logical Test 1, LogicalTest 2, .) Equal Less than Greater than Less than or equal to Greater than or equal to Not equal to TRUE – this part of the IF function will only execute when the logical test is TRUEFALSE – this part of the IF function will only execute when the logical test is FALSEBoth TRUE and FALSE can be a word, a formula or a constant valueTo return a blank cell use two double quotes “”This formula can only return TRUE or FALSEOnly one test in the group must return TRUE for the formula to return TRUEThis formula can only return TRUE or FALSEOnly one test in the group must return FALSE for the formula to return FALSELookup FormulasFormulaVLOOKUPStructure VLOOKUP (Lookup Value, TableArray, Col Index, Range Lookup)Explanation 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 atable array for near or exact matcheso In most cases you will want to use absolute cell referencing whenindicating a table arrayo If you omit the Range Lookup, Excel will assume “True” and look for anear matchPage 2 of 7

Excel Formulas Cheat SheetFinancial FormulasFormulaPMTStructure PMT(rate, nper, pv, [fv], [type])Explanation rate – Annual Percentage Rateo Divide yearly rate by 12 monthso REQUIRED nper – number of periodso How many months are in the loan? (12 months/year) * length of loan inyears length of loan in monthso REQUIRED pv – present valueo amount of loan – this is the amount that was borrowedo 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 omittedo 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 ifomittedPage 3 of 7

Excel Formulas Cheat SheetStatistical FormulasFormulaSUMIFStructure SUMIF(range, criteria,[sum range])SUMIFS SUMIFS(sum range,criteria range1, criteria1,[criteria range2, criteria2], .)Explanation 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 afunction that defines which cells will be added. For example, criteria can be expressed as 32, " 32", B5, "32", "apples", orTODAY(). Important: Any text criteria or any criteria that includes logical or mathematicalsymbols must be enclosed in double quotation marks ("). If the criteria isnumeric, double quotation marks are not required. Sum Range Optional.o The actual cells to add, if you want to add cells other than thosespecified in the range argument.o If the sum range argument is omitted, Excel adds the cells that arespecified in the range argument (the same cells to which the criteria isapplied). SUMIFS will return at total based on more than one criteria Sum Range - The range of cells to sum Criteria range1 – Requiredo The range that is tested using Criteria1 Criteria1 – Requiredo The first value tested for – this must be a match to be included in thetotal Criteria range2 – Optionalo The range that is tested using Criteria2 Criteria2 – Optionalo The second value tested for – this must be a match to be included in thetotal And so on Page 4 of 7

Excel Formulas Cheat SheetFormulaCOUNTIFStructure COUNTIF(range, criteria)COUNTIFS COUNTIFS(criteria range1,criteria1, [criteria range2,criteria2] )Explanation Answers the question “How many of something (criteria) exist within specific setof 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 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 textthat define which cells will be counted. For example, criteria can beexpressed as: 32, " 32", B4, "apples", or "32" criteria range2, criteria2, .o Optional.o Additional ranges and their associated criteria. Up to 127 range/criteriapairs are allowed. Important:o Each additional range must have the same number of rows andcolumns as the criteria range1 argument.o The ranges do not have to be adjacent to each otherPage 5 of 7

Excel Formulas Cheat SheetFormulaAVERAGEIFStructure AVERAGEIF(range, criteria,[average range])Explanation Returns the average (arithmetic mean) of all the cells in a range that meet agiven criteria Range – Required.o One or more cells to average, including numbers or names, arrays, orreferences that contain numbers. Criteria – Required.o The criteria in the form of a number, expression, cell reference, or textthat defines which cells are averaged. For example, criteria can beexpressed as: 32, " 32", B4, "apples", or "32" Average range – Optional.o The actual set of cells to average.o If omitted, range is usedPage 6 of 7

Excel Formulas Cheat SheetFormulaStructureAVERAGEIFS AVERAGEIFS(average range,criteria range1, criteria1,[criteria range2, criteria2], .)Explanation Returns the average (arithmetic mean) of all cells that meet multiple criteria Average range – Requiredo One or more cells to average, including numbers or names, arrays, orreferences that contain numbers. Criteria range1 – Required, subsequent criteria ranges are optional (up to 127ranges) criteria range2, criteria range3, – Optional Criteria1 – Required, subsequent criteria are optionalo Criteria can be in the form of a number, expression, cell reference, or textthat define which cells will be averaged. For example, criteria can beexpressed as: 32, " 32", B4, "apples", or "32" criteria2, criteria3,. If you have a Criteria Range, you must have a corresponding CriteriaPage 7 of 7

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

Related Documents:

Cissp cheat sheet all domains. Cissp cheat sheet 2022 pdf. Cissp cheat sheet 2022. Cissp cheat sheet domain 4. Cissp cheat sheet pdf. Cissp cheat sheet 2021. Cissp cheat sheet domain 1. Cissp cheat sheet reddit. We use cookies to offer you a better browsing experience, analyze site traffic, personalize content, and serve targeted advertisements.

Excel 5.0 Excel 5.0 1993 Excel 5.0 1993 Excel 7.0 Excel 95 1995 Excel 8.0 Excel 97 1997 Excel 98 1998 Excel 9.0 Excel 2000 1999 Excel 2001 2000 Excel 10.0 Excel XP 2001 Excel v.X 2001 Excel 11.0 Excel 2003 2003 Excel 2004 2004 2.1.2 Worksheet Document Definition: Worksheet Document A worksheet document consists of a single sheet only.

The Excel 2010 Ribbon looks and works much the same as the Excel 2007 Ribbon, with one nifty addition: In Excel 2010, you can customize what's on the Ribbon. In this series Word 2010 cheat sheet Excel 2010 cheat sheet Outlook 2010 cheat sheet PowerPoint 2010 cheat sheet The Scrollbar.

Git-cheat-sheet Optional Reading: Bourbon-cheat-sheet CLI-cheat-sheet Git-for-subversion-cheat-sheet Tower-cheat-sheet (for Mac or Windows depending on your computer) Website_optimization-cheat-sheet Workflow-of-version-control Xcode-cheat-sheet _tower-git-client (

Google Slides Cheat Sheet p. 15-18 Google Sheets Cheat Sheet p. 19-22 Google Drawings Cheat Sheet p. 23-26 Google Drive for iOS Cheat Sheet p. 27-29 Google Chrome Cheat Sheet p. 30-32 ShakeUpLearning.com Google Cheat Sheets - By Kasey Bell 3

A Note about Array formulas (not for Excel 365 / Excel 2021) Sometimes, you will need to enter a formula as array formula. In Excel 365/Excel 2021, all formulas are treated as Array formula, hence you need not enter any formula as Array formula. Only for older versions of Excel, you might need to enter a formula as Array formula.

Excel 2010 cheat sheet Outlook 2010 cheat sheet PowerPoint 2010 cheat sheet Status bar. Here you'll see information about the current slide you're viewing, including what number it is in the presentation and what design theme it's using. Notes pane. Underneath the slide you'll find a spot where you can type speaker notes. You can

An Introduction to Conditional Random Fields Charles Sutton1 and Andrew McCallum2 1 EdinburghEH8 9AB, UK, csutton@inf.ed.ac.uk 2 Amherst, MA01003, USA, mccallum@cs.umass.edu Abstract Often we wish to predict a large number of variables that depend on each other as well as on other observed variables. Structured predic- tion methods are essentially a combination of classi cation and graph-ical .