Financial Analyst How To Use INDEX MATCH in Excel: 10 Advanced Excel Formulas You Must Know
Financial Analyst How To Use INDEX MATCH in Excel: 10 Advanced Excel Formulas You Must Know
Below is a screenshot of this slightly more sophisticated formula Read more about scenario analysis in Excel.
in action.
As you see, the SUM formula starts in cell B4, but it ends with a To see a video demonstration, check out our Advanced Excel
variable, which is the OFFSET formula starting at B4 and Formulas Course.
continuing by the value in E2 (“3”), minus one. This moves the
end of the sum formula over 2 cells, summing 3 years of data
(including the starting point). As you can see in cell F7, the sum
5. XNPV and XIRR example, imagine you want to count all cells that are greater
Formula: =XNPV(discount rate, cash flows, dates) than or equal to 21 (the legal drinking age in the U.S.) to find out
how many bottles of champagne you need for a client event.
If you’re an analyst working in investment banking, equity You can use COUNTIF as an advanced solution, as shown in
research, or financial planning & analysis (FP&A), or any other the screenshot below.
area of corporate finance that requires discounting cash flows,
then these formulas are a lifesaver!
Simply put, XNPV and XIRR allow you to apply specific dates to
each individual cash flow that’s being discounted. The problem
with Excel’s basic NPV and IRR formulas is that they assume
the time periods between cash flow are equal. Routinely, as an
analyst, you’ll have situations where cash flows are not timed
evenly, and this formula is how you fix that.
These two advanced formulas are great uses of conditional Here is an example of how to use the PMT function to get the
functions. SUMIF adds all cells that meet certain criteria, and monthly mortgage payment for a $1 million mortgage at 5% for
COUNTIF counts all cells that meet certain criteria. For 30 years.
9. CONCATENATE
Formula: =A1&” more text”
8. LEN and TRIM
Formulas: =LEN(text) and =TRIM(text) Concatenate is not really a function on its own – it’s just an
innovative way of joining information from different cells and
These are a little less common, but certainly very sophisticated making worksheets more dynamic. This is a very powerful tool
formulas. These applications are great for financial for financial analysts performing financial modeling (see our free
analysts who need to organize and manipulate large amounts of financial modeling guide to learn more).
data. Unfortunately, the data we get is not always perfectly
organized and sometimes there can be issues like extra spaces In the example below, you can see how the text “New York” plus
at the beginning or end of cells “, “ is joined with “NY” to create “New York, NY”. This allows you
to create dynamic headers and labels in worksheets. Now,
In the example below, you can see how the TRIM formula instead of updating cell B8 directly, you can update cells B2 and
cleans up the Excel data. D2 independently. With a large data set, this is a valuable skill
to have at your disposal.
10. CELL, LEFT, MID and RIGHT functions
These advanced Excel functions can be combined to create More Excel formulas training
some very advanced and complex formulas to use. The CELL We hope these top 10 advanced Excel formulas have been
function can return a variety of information about the contents of helpful for you, and they should go a long way to improving your
a cell (such as its name, location, row, column, and more). The financial analysis and financial modeling skills.
LEFT function can return text from the beginning of a cell (left to
right), MID returns text from any start point of the cell (left to
right), and RIGHT returns text from the end of the cell (right to
left). Excel TEXT Function
Below is an illustration of these three formulas in action.
Summary
The Excel TEXT function returns a number in a specified
number format, as text. You can use the TEXT function to
embed formatted numbers inside text.
Purpose TEXT formula examples
Convert a number to text in a number format
Return value
A number as text in the given format.
Usage notes
Use the TEXT function to convert a number to text in a specific
number format.
Get last entry by month and year
TEXT is especially useful when you want to embed the
numeric output of a formula or function and present it in a To lookup the last entry in a table by month and year, you can
particular format inside other text. For example, "Sales last year use the LOOKUP function with the TEXT function. In the
increased by over $43,500", where the number 43500 has been example shown, the formula in F5 is:
formatted with a currency symbol and thousands separator. =LOOKUP(2,1/(TEXT($B$5:$B$13,"mmyy")=TEXT(E5,"...
format_text must appear in double quotation marks.
To see examples of number formats that are available,
consult the Format Cells dialog box.
Related functions