NPV Function
The NPV function in Google Sheets calculates the net present value of an investment based on a series of periodic cash flows and a discount rate.
Syntax
NPV(discount, cashflow1, [cashflow2, ...])
discount
: The discount rate over one period. This is a required parameter.cashflow1, cashflow2, ...
: Cash flow amounts for each period. The first cash flow amount is required, additional cash flows are optional.
Examples
- Basic NPV Calculation
Calculate the NPV for a series of cash flows with a 10% discount rate:
=NPV(10%, -1000, 200, 300, 400, 500)
This will output approximately $145.07.
Notes
- NPV is used in capital budgeting to analyze the profitability of an investment or project.