Reference
Formula & shortcut reference
Everything the Scrim grid understands - the same functions and muscle memory you use in Excel. Keep this open in a tab while you build.
Math & statistics
=SUM(B4:B8)Adds every value in the range.
=AVERAGE(B4:B8)Arithmetic mean of the range.
=MAX(B4:B8)Smallest / largest value.
=COUNT(B4:B8)How many numbers are in the range.
=PRODUCT(B4:B6)Multiplies the values together.
=SUMPRODUCT(B4:B6,C4:C6)Multiplies pairs, then sums - great for weighted averages.
=ROUND(B9,2)Rounds to the given number of decimals.
=ABS(B9)Absolute value.
=POWER(1+B5,B6)Square root / x raised to n. ^ also works: (1+B5)^B6.
=LN(B9)Natural log / e^x.
Logical
=IF(B9>0,B9,0)Returns a when the test is true, otherwise b.
=IF(AND(B5>0,B6>0),1,0)Combine conditions.
=NOT(B5>0)Flips true/false.
=B5>=B6Return true/false; use inside IF.
Finance
=NPV(B5,B10:F10)Present value of a series of future cash flows.
=IRR(B10:F10)Rate that makes NPV zero (include the negative outlay).
=PV(B5,B6,B7)Present / future value of an annuity.
=PMT(B5,B6,B7)Level payment that pays off pv over n periods.
=NPER(B5,B7,B8)Number of periods / implied rate.
=CAGR(B4,B9,5)Compound annual growth rate over n years.
Keyboard shortcuts
Ready to use these for real?
Open the simulator