Excel Formulas Cheat Sheet - Intermediate Guide
Excel Formulas Cheat Sheet - Intermediate Guide
Cheat Sheet
Intermediate Guide
Intermediate
Math Formulas
The functions evaluate the criteria provided and produce a logical value of TRUE or FALSE.
MINA COUNTA
MAXA COUNTIF
The alternative MINA and MAXA functions consider both text and
numbers when looking for the highest or lowest values. Text values
are evaluated as if they were zero.
You can also use these functions to count the number of distinct
values in a column. This video shows how to do so.
Youtube link
PRODUCT(number1, [number2…])
QUOTIENT(numerator, denominator)
LOG(number, [base])
Use the PRODUCT function to calculate the future value with this formula:
Use the QUOTIENT function in combination with the LOG function to calculate this as
follows:
This formula will return 17 with the sample data, indicating that it will take 17 years for the
investment to double in value at an annual interest rate of 4%.
The NPV (Net Present Value) function will calculate the net present value of an
investment based on a series of future cash flows based on a discount rate.
The ACCRINT function calculates the accrued interest of a security that pays periodic
interest. This is useful for determining the interest earned on a security since the last
payment date up to a given settlement date.
The YIELD function provides the yield of a security based on interest rate, face
value, and maturity.
The formula =MONTH(“23 April 2023) will return a result of 4 for the 4th month. Similarly,
the DAY and YEAR functions will return 23 and 2023 respectively.
EDATE(start_date, number_of_months)
EOMONTH(start_date, number_of_months)
For example, the formula =EDATE("23 April 2023", 2) will calculate the date two months later.
The formula =EOMONTH(23 April 2023", 2) calculates the end of the month two months later.
The result is "30 June 2023", which takes into account that there are only thirty days in June. If
you specify 3 months, the result will be "31 July 2023".
The WEEKDAY function returns the day of the week for a given date. The second parameter
determines the numbering system with the default being Sunday to Saturday.
If you have a series of dates in a cell range of B1:B40, use this formula to calculate the
workdays:
=SUM(--(WEEKDAY(B1:B40,2)>5))
=SUM(--(WEEKDAY(B1:B40,2)>5))
The value 0.74 represents the proportion of the 24-hour day that has passed by at the
time of fifteen minutes before six o'clock.
Take to to change the time cell from a time format to a text format. You may want to
format this as a percentage to be clearer.
For example, =IF(A1>=60, "Pass", "Fail") checks if the score in cell A1 is at least 60. If it is, it
displays "Pass", otherwise it displays "Fail".
For example, =AND(A1>3, A2<20) checks if the value in A1 is greater than 3 and if the value in
A2 is less than 20. If both are true, it returns TRUE; otherwise, it returns FALSE.
=NOT(logical_expression)
For example, =NOT(A1) will return FALSE if the value in cell A1 is TRUE, and TRUE if the
value is FALSE.
INDIRECT(ref_text)
INDEX(range, row_num, column_num)
OFFSET(reference_cell, rows, columns)
=INDIRECT(“B3”)
The advantage over using simple cell references is that this function gives you a
dynamic reference. This means that Excel automatically updates the reference when
the structure of the spreadsheet changes e.g. a row is deleted.
=INDEX(B1:B6, 3)
If you want to display the cell value that is two cells across and one cell down from A1, use
this formula:
=OFFSET(A1, 2, 1)
To replace occurrences of the word “Jeans” with “Leggings”, use this formula:
IFERROR(value, if_error)
IFNA(value, value_if_na)
Use the IFERROR function to replace the standard error with “Cannot divide by
zero” with this formula:
F2: Edit the active cell and position the insertion point at the end of the cell contents.
F9:Calculate and display the result of the selected portion of a formula.
Ctrl + Shift + Enter: Enter an array formula.
Shift + F3: Open the Insert Function dialog box.
Esc: Cancel the entry of a formula and revert to the original cell contents.
Some of these Excel shortcuts might not be available in all languages or keyboard layouts.
ENTERPRISEDNA.CO