Excel Shortcuts
Excel Shortcuts
corporatefinanceinstitute.com 7
The Corporate Finance Institute Excel
Formatting shortcuts
corporatefinanceinstitute.com 8
The Corporate Finance Institute Excel
Navigation shortcuts
corporatefinanceinstitute.com 9
The Corporate Finance Institute Excel
File Shortcuts
Ribbon Shortcuts
corporatefinanceinstitute.com 10
The Corporate Finance Institute Excel
Clear Shortcuts
Selection Shortcuts
corporatefinanceinstitute.com 11
The Corporate Finance Institute Excel
Other Shortcuts
corporatefinanceinstitute.com 12
The Corporate Finance Institute Excel
The first thing you’ll do if you’re hired as an investment banking analyst is take
a series of intense Excel training courses. Your mouse will be taken away and
you’ll be expected to learn financial modeling with only keyboard shortcuts. If
you follow our tips and tricks below you’ll be able to master these shortcuts on
Windows or Mac operating systems.
You may also want to check out our section on Excel formulas or the Excel
formulas cheat sheet. Excel is quite robust, meaning there is a lot of different
tools that can be utilized within it, and therefore there are many skills one can
practice and hone.
If you want to learn these keyboard shortcuts with your own personal online
instructor, check our CFI’s Free Excel Crash Course! You’ll receive step by step
instructions and demonstrations on how to avoid the mouse and only use your
keyboard.
corporatefinanceinstitute.com 13
The Corporate Finance Institute Excel
PART 02
Basic Excel Formulas
corporatefinanceinstitute.com 14
The Corporate Finance Institute Excel
To learn more, please Mastering the basic Excel formulas is critical for beginners to become highly
proficient in financial analysis. Microsoft Excel is considered the industry
check out our online
standard piece of software in data analysis. Microsoft’s spreadsheet program
courses
also happens to be one of the most preferred software by investment bankers
and financial analyst in data processing, financial modeling, and presentation.
This guide will provide an overview and list of basic Excel functions. Once
you’ve mastered this list, move on to CFI’s advanced Excel formulas guide!
1. Formulas
2. Functions
corporatefinanceinstitute.com 15
The Corporate Finance Institute Excel
Excel is quite intelligent in that when you start typing the name of the function,
a pop-up function hint will show. It’s from this list you’ll select your preference.
However, don’t press the Enter key. Instead, press the Tab key so that you can
continue to insert other options. Otherwise, you may find yourself with an
invalid name error, often as ‘#NAME?’. To fix it, just re-select the cell, and go to
the formula bar to complete your function.
Note that pressing F2 while hovered over a cell allows you to edit the cells’ formula.
corporatefinanceinstitute.com 16
The Corporate Finance Institute Excel
If you want full control of your functions insertion, using the Excel Insert
Function dialogue box is all you ever need. To achieve this, go to the Formulas
tab and select the first menu labeled Insert Function. The dialogue box will
contain all functions you need to complete your analysis.
corporatefinanceinstitute.com 17
The Corporate Finance Institute Excel
The option is for those who want to delve into their favorite functions quickly.
To find this menu, navigate to the Formulas tab and select your preferred
group. Click to show sub-menu filled with a list of functions. From there, you
can select your preference. However, if you find your preferred group is not on
the tab, click on the More Functions option – probably it’s just hidden there.
Financial: ALT + M + I
Logical: ALT + M + L
Text: ALT + M + T
corporatefinanceinstitute.com 18
The Corporate Finance Institute Excel
For quick and everyday tasks, AutoSum is your go-to option. So, navigate to the
Home tab, in the far-right corner, click the AutoSum option. Then click the caret
to show other hidden formulas. This option is also available in the Formulas
tab first option after the Insert Function option.
Alternatively, the Autosum Excel function can be accessed by typing ALT + the =
sign in a spreadsheet and it will automatically create a formula to sum all the
numbers in a continuous range.
Step 1: Place the cursor below the column of numbers you want to sum (or to
the left of the row of numbers you want to sum).
Step 2: Hold down the Alt key and then press the equals = sign while still
holding Alt.
corporatefinanceinstitute.com 19
The Corporate Finance Institute Excel
If you find re-typing your most recent formula a monotonous task, then use
the Recently Used menu. It’s on the Formulas tab, a third menu option just
next to AutoSum.
corporatefinanceinstitute.com 20
The Corporate Finance Institute Excel
1. SUM
The SUM function is the first must-know formula in Excel. It usually aggregates
values from a selection of columns or rows from your selected range.
=SUM(number1, [number2], …)
Example:
=SUM(A2:A8)/20 – Shows you can also turn your function into a formula.
corporatefinanceinstitute.com 21
The Corporate Finance Institute Excel
2. AVERAGE
The AVERAGE function should remind you of simple averages of data such as
the average number of shareholders in a given shareholding pool.
=AVERAGE(number1, [number2], …)
Example:
corporatefinanceinstitute.com 22
The Corporate Finance Institute Excel
3. COUNT
The COUNT function counts all cells in a given range that contains only numeric
values.
=COUNT(value1, [value2], …)
Example:
corporatefinanceinstitute.com 23
The Corporate Finance Institute Excel
4. COUNTA
Like the COUNT function, COUNTA counts all cells in a given rage. However, it
counts all cells regardless of type. That is, unlike COUNT that relies on only
numerics, it also counts dates, times, strings, logical values, errors, empty
string, or text.
=COUNTA(value1, [value2], …)
Example:
corporatefinanceinstitute.com 24
The Corporate Finance Institute Excel
5. IF
The IF function is often used when you want to sort your data according to a
given logic. The best part of the IF formula is that you can embed formulas and
function in it.
Example:
=IF(C2<D3, ‘TRUE,’ ‘FALSE’) – Checks if the value at C3 is less than the value at
D3. If the logic is true, let the cell value be TRUE, else, FALSE
corporatefinanceinstitute.com 25
The Corporate Finance Institute Excel
6. TRIM
The TRIM function makes sure your functions do not return errors due to
unruly spaces. It ensures that all empty spaces are eliminated. Unlike other
functions that can operate on a range of cells, TRIM only operates on a single
cell. Therefore, it comes with the downside of adding duplicated data in your
spreadsheet.
=TRIM(text)
Example:
corporatefinanceinstitute.com 26
The Corporate Finance Institute Excel
The MAX and MIN functions help in finding the maximum number and the
minimum number in a pull of values.
=MIN(number1, [number2], …)
Example:
=MAX(number1, [number2], …)
Example:
corporatefinanceinstitute.com 27