Working with Sheets
Sheets in Mila provide spreadsheet functionality for data analysis, financial modeling, and more.
Creating a Sheet
Create sheets from the docs page by clicking Create → Sheet, or use AI prompts like:
Create a DCF model for a tech startupBuild a monthly budget trackerBasic Operations
Entering Data
Click on any cell and start typing. Press Enter to confirm and move down, or Tab to move right.
Selecting Cells
- Click a single cell to select it
- Click and drag to select a range
- Hold
Shiftand click to extend selection
Formulas
Mila sheets support common spreadsheet formulas:
| Formula | Description | Example |
|---|---|---|
SUM | Add values | =SUM(A1:A10) |
AVERAGE | Calculate mean | =AVERAGE(B1:B5) |
COUNT | Count cells | =COUNT(A:A) |
IF | Conditional | =IF(A1>10,"Yes","No") |
MAX | Maximum value | =MAX(A1:A10) |
MIN | Minimum value | =MIN(A1:A10) |