Averages – Excel
Mean – arithmetic mean - Excel
=AVERAGE(range)
Median – middle point in a set of
observations - Excel
=MEDIAN(range)
Mode – most common number in a
set of observations - Excel
=MODE(range)
Weighted Average Mean – Excel
=SUMPRODUCT(A1:A2,B2:B3)/SUM(B2:B3)
A
Price
|
B
Quantity
|
|
1
|
$50
|
10
|
2
|
$20
|
90
|
Geometric mean – Excel
=GEOMEAN(range)
Geometric mean can be used for a
range of positive data in situations involving growth over time.
Remove #N/A errors - Excel
Overview =IF(ISNA(lookup),0,lookup)
#N/A errors are replaced with 0.
Example =IF(ISNA(VLOOKUP(A1,D1:E5,2,0)),0,VLOOKUP(A1,D1:E5,2,0))
EDATE - Excel and PowerPivot
Calculates the date a number of months before/after a start date
Type: =EDATE(date,6)
For example, could be used to calculate a maturity a certain number of months from a start date.
Calculate financial quarter from a date - Excel
Type =MOD(CEILING(22+MONTH(A1)-6-1,3)/3,4)+1
Where cell A1 contains the date, 6 (month 6) represents last month of the financial year.
Format cell as number with no decimal places.
No comments:
Post a Comment