Documentation Index
Fetch the complete documentation index at: https://pluvo-02a06e95.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Folders
Folders help you organize variables within your model. They make complex models easier to read, group, and manage—especially when you’re working with lots of line items across departments, entities, or use cases.Adding a Folder
To create a folder:- Scroll to the bottom of the grid
- Click the “+ Add Variable” button
- Select “New Folder”
What Folders Do
Folders are organizational tools—they don’t have formulas, definitions, or values of their own.They exist purely to group and structure your model. You can:
- Rename a folder by clicking the pencil icon at the end of its row
- Drag and drop variables into folders
- Drag and drop folders into other folders
- Expand or collapse folders to control visibility
Using Folders in Formulas
Even though folders don’t have their own values, you can reference folders in formulas. Pluvo treats them as a list of the variables they contain. Examples:sum(folder_name)→ Returns the sum of all variables inside the foldercount(folder_name)→ Returns the number of variables in that folder
Note:
- Variables in nested folders are included
- The folders themselves do not count toward the result
- Sub-variables (i.e., dimensioned child rows) are not included in
count()totals
Using sumif() and countif()
Folders can also be used with conditional formulas:
sumif(folder_name, condition)countif(folder_name, condition)
Common Use Case:
You may have a folder calledemployees where each variable is a different employee’s salary.To calculate department headcount dynamically—only counting employees who are currently forecasted to earn a salary—you’d use:
countif(#employees, >0)
This ensures you: Don’t count employees before their start date Stop counting them if they leave or are forecasted to have zero salary
Best Practices
- Use folders to group line items by department, function, or logic (e.g., “Sales Team,” “Operating Costs”)
- Collapse rarely used folders to declutter your workspace
- Use sum() or count() for simple roll-ups, and sumif() / countif() for logic-aware aggregations
- Name folders clearly to make them easy to reference in formulas