excel_create_npv_analysis
Generate Excel worksheets with formulas to calculate Net Present Value for investment analysis and financial decision-making.
Instructions
Create a comprehensive NPV analysis worksheet with formulas and documentation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
discountRate | Yes | Annual discount rate (e.g., 0.10 for 10%) | |
projectName | Yes | ||
worksheetName | No | NPV Analysis |
Input Schema (JSON Schema)
{
"properties": {
"discountRate": {
"description": "Annual discount rate (e.g., 0.10 for 10%)",
"type": "number"
},
"projectName": {
"type": "string"
},
"worksheetName": {
"default": "NPV Analysis",
"type": "string"
}
},
"required": [
"projectName",
"discountRate"
],
"type": "object"
}