Excel Formulas For PM
Excel Formulas For PM
com 1
#0201: Used in Financial Modeling and Tax Computation
§ Used in Tax Computations & Financial Models to prevent choosing of negative
numbers for subsequent calculations.
§ E.g. =MAX(0,A1) chooses 0 or value in cell A1, whichever is higher
§ E.g. Penalty for late deposit = higher of 2% of dues or Rs.100
§ Used in logics such as “lower of the two numbers” in the area of Tax
Computations, specific areas of Financial Engineering
§ =MIN(A1:A5) is same as =SMALL(A1:A5,1)
§ Auction such as highest bid value, second highest bid value and so on. E.g. H2 will
be =LARGE(A1:A5,2)
§ Vendor evaluation such as lowest bid value L1, second lowest bid value L2 and
so on. E.g. L2 will be =SMALL(A1:A5,2)
§ "num_digits" signifies “number of decimal digits”. E.g. For the starting number
52.233 – “2” implies 52.23, “1” implies 52.20, and 0 implies 52.00
§ =ROUND(A1/50, 0) * 50 [implies nearest 50] – same technique also
applicable with ROUNDUP & ROUNDDOWN
§ MROUND() do not work with +/– nos. simultaneously AND it does not accommodate the logic of round up and round
down.
§ Counts the number of cells which IS NOT a blank (i.e. numbers, alphabets,
alphanumeric, space)
§ COUNTIF() and COUNTIFS() will be discussed later in the book. COUNTIFS() is a logic based cell counting mechanism
§ Multiplies corresponding cells in two or more ranges and returns the sum of
those products. E.g. =SUMPRODUCT(A1:A2,B1:B2) = (A1*B1) + (A2*B2)
§ The array arguments must have the same dimensions. E.g.
=SUMPRODUCT(A1:A2,B1:B3) is invalid
§ Used with =SUM() for computing weighted average
§ Was used to create condition–based sum logic before SUMIFS() was introduced
#0709: Date Formulas - EOMONTH() for Financial Modeling, Budgets, Due Dates
§ Returns the last day of the month before or after a specified number of
months.
§ Used for due dates computations such as 5th of next month, end of current
month
§ Used for creating timelines in Budget & Forecast models – MoM, QoQ, YoY
#0710 Date Formulas - EDATE() for Financial Modeling, Budgets, Due Dates
§ Returns the date that represents the indicated number of months before or
after the start date. E.g. 60 days vs. 2 months
§ Used for computing 3 months’ notice period end date, retirement age,
probation period, contract deadline, EMI installment due date
Note:
(1) Use <F4> to lock Criteria_range & Sum_range
(2) Maintain SAME HEIGHT of RANGES
(3) SUMIFS can accept multiple criteria (127 !) whereas SUMIF can accept only one
§ If cell A1 contains “21-May-2001”, then the Criteria_1 can be “>=”&A1 indicating date 21-May-2001 onwards. The
operators (> < = etc.) has to be enclosed in a pair of double-quotes and concatenated (&) with the cell reference
containing valid date(s).
§ Careful use of relative references ($) can help yield differential cumulative running total
§ Solution: 2
§ Used for 2-way list-reconciliation, duplicate count E.g. =COUNTIFS($A$1:$A$100,A1)
§ Used for Instance No./Occurrence No. =COUNTIFS($A$1:A1,A1)
· Removes excess spaces from text. Removes all leading & trailing
spaces. However, multiple spaces inside the sentences are replaced
with a single space.
· E.g. Converts “ HSBC Inc. ” TO “HSBC Inc.”
Note:
§ Case Sensitive? – No
§ Can use wild characters in search terms? - Yes