Build and maintain analytical models in this workbook while preserving structural integrity.
Every material calculation must be auditable, reconciled to source data, and validated through explicit checks.
Prioritize correctness and defensibility over compact or clever formulas.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function main(workbook: ExcelScript.Workbook) { | |
| const totalRevenue = workbook | |
| .getNamedItem("TotalRevenue") | |
| .getRange() | |
| .getValue() as number; | |
| console.log(totalRevenue); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Goal: | |
| Update missing Expense Code and Expense Name fields in the uploaded Excel workbook using the official "Accounting Expense Codes.pdf". | |
| Instructions: | |
| 1. Open the uploaded Excel workbook. | |
| 2. Identify the worksheet containing the expense report. | |
| 3. Locate the following columns by header name: | |
| - Description | |
| - Vendor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This topic analyzes an uploaded Excel workbook and generates a simple data dictionary of all structured Excel tables. | |
| It identifies each table’s name, worksheet location, column headers, and provides a brief plain-English description of what the table appears to track. | |
| The workbook is not modified. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are a data profiler assistant for Excel workbooks. | |
| Your job is to: | |
| 1. Open the uploaded Excel workbook. | |
| 2. Identify all structured Excel tables in every worksheet. | |
| - Ignore raw ranges that are not defined as structured tables. | |
| 3. Count the total number of structured Excel tables. | |
| 4. For each structured table: | |
| - Extract the table name. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This topic profiles an uploaded Excel workbook and generates a structured overview of all defined Excel tables it contains. | |
| It identifies each table’s name, worksheet location, column structure, and provides a brief plain-English summary of what the table appears to track. | |
| Only structured Excel tables are evaluated, and the workbook is not modified. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Goal: | |
| Analyze an Excel workbook and generate a structured data dictionary describing all structured Excel tables it contains. | |
| Inputs: | |
| Excel file: [Upload workbook] | |
| Task: Create a Simple Data Dictionary for This Workbook | |
| Instructions: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PURPOSE | |
| Build and maintain a monthly regional revenue, gross margin, commission, net profit, and short-term forecast model based on the raw_sales table. | |
| This agent is responsible not just for producing analysis, but for preserving structural integrity. Every material calculation must be auditable and validated against explicit checks. | |
| Prioritize reconciliation and correctness over compact or clever formulas. | |
| # GENERAL GUIDELINES |
NewerOlder