Excel Reference Sheet: Formatting Shortcuts Row/Column Shortcuts
Excel Reference Sheet: Formatting Shortcuts Row/Column Shortcuts
Auditing Shortcuts (when referencing other cells) Cancel a cell entry Esc
Go to precedent cells Ctrl + [
Go to dependent cells Ctrl + ] Other great shortcuts
Go back to original cell F5 + enter Display ‘insert function’ box SHIFT + F3
“Go to” F5 Recalculate workbooks Shift + F9
Display a drop-down list ALT + up/down
Workbook/Excel Navigation
Activate menu bar Ctrl + F2 Save workbook ⌘+s
Page up/down Ctrl Fn + up/down Close window ⌘+w
Move to left/right tab Ctrl + page up / page down
Edit cell CTRL + U
Toggle workbook Ctrl + tab
New workbook ⌘+n
Print ⌘+p
Open workbook ⌘+o
Popular formulas
Excel Reference Sheet
(Works for most versions, tailored to 2010)
Mathematics functions
Counts or performs math on cell references or values
+ ; - ; * ; / Add, subtract, multiple, and divide. String together using different references or values, e.g. [=H1 * H2 +
H3 / H4]. Follows normal mathematical order of operations
Adds the selected range together. You can either add individual numbers or cells separating them with a
=SUM(number1,number2,..)
comma [=SUM(H1,H2,H3,H4)] or add ranges using a colon [=SUM(H1:H4)]
=PRODUCT(number1,number2,..) Multiplies the selected range together. Use the same way you use the SUM formula
Counts the number of fields in the range that contains number values. Use the same way you use the SUM
=COUNT(value1,value2,..)
formula. Only counts numbers.
Counts the number of fields in the range that contains number values. Use the same way you use the SUM
=COUNTA(value1,value2,…)
formula.
=ABS(number) Takes the absolute value of the number of the referenced cell or value
Returns the sum of the product of two or more arrays. E.g. SUMPRODUCT(H1:H2,A1:A2) will return H1*A1
=SUMPRODUCT(array1,array2)
+ H2 * A2
Conditional functions
Performs different activities if specified conditions are met
To perform a logical test,
= - ‘equal to’ > - ‘greater than < - ‘Less than’ >= - ‘greater than or equal to’
Logical Test
<= - ‘less than or equal to’ <> - ‘is not equal to’
e.g, [=IF(H1 <> 2…..) means ‘if H1 does not equal to’
=IF(Logical test, value if true, value Gives one value if the logical test is true, and another if a logical test is false
if false)
=AND(logical1,logical2…) Returns ‘true’ if all logical conditions are met. Allows you to incorporate more than one logical test.
=OR(logical1,logical2…) Returns ‘true’ if one of logical conditions are met. Allows you to incorporate more than one logical test
Adds all of the numbers where the logical test is true; e.g., =SUMIF(H1-H4,”Stacy”,C1-C4) will sum all values
=SUMIF(range,criteria,sumrange)
in C1-C4 where Stacy is the value of H1, H2, H3, or H4
=COUNTIF(range, criteria) Counts the cells in the range where a specific criteria is met
=COUNTIFS(range,criteria1,criteria2) Counts the cells in a range where specific criterion are met
Statistical functions
Performs different statistical tests on a range
=MIN(range) Returns the smallest value in a range
=MAX(range) Returns the largest value in a range
=AVERAGE(range) Returns the average value in a range
=MEDIAN(range) Returns the median value in a range
=QUARTILE(range,quartile) Returns the first, second, or third quartile value of a range
Text manipulation functions
Changes or manipulates the values of text in a cell or range
=TEXT(value,format) Allows you to change the format of a referenced cell, usually combined with concatenate functions
=CONTCATENATE(text1,text2…) Joins together different cells into a combined string of text
=LEFT(text,number of chars) Returns the leftmost required number of characters from a referenced cell
=MID(text,start_num,num_chars) Returns the middle # of characters from a referenced cell, starting from the start cell and counting right
=RIGHT(text, number of chars) Returns the rightmost required number of characters from a referenced cell
=LEN(text) Returns the number of characters in a string or referenced cell
Lookup functions
Looks up the selected value in a range, and returns information
=INDEX(array, row number, column From the selected array, returns the cell that is X rows down, and Y rows to the right of the upper leftmost
num) cell in the array. Often combined with MATCH to search for the row and column numbers
Returns the relative position in an array of the first instance of the value from top/left. For example, in an
=MATCH(value,array,type)
array (Mark, Stacy, Claire), a value of “Claire” would return a number of “3”.
=VLOOKUP(value,array,col num, Looks up a value from the leftmost column of the array, and returns the number in that row that is in the
type) Xth column of the array
=HLOOKUP(value,array,row num, Looks up a value from the topmost row of the array, and returns the number in that column that is in the
type) Xth row of the array