Smartsheet Mastery Exercises
Fill in the blanks to test your knowledge.
Smartsheet enforces ___ types on columns, so a Date column only accepts date values
In a Smartsheet formula, ___ refers to the current row's value for a specific column
// Checks if Status in this row equals "Done"
=IF([Status] = "Done", 1, 0)
Curly braces {} in a Smartsheet formula reference a named ___ from another sheet
// Count tasks from another sheet that are "At Risk"
=COUNTIF(
{Project_Alpha_Status},
"At Risk"
)
// {} wraps a cross-sheet name
The ___ function aggregates values from child rows under a parent in a hierarchy
// Parent row formula — sum all child task hours
=SUM(())
// Reads the column value from every
// child row nested beneath this parent
An automation that sends editable form fields by email — letting recipients update data without logging in — is called an Update ___
A Smartsheet ___ aggregates live rows from multiple source sheets based on filter criteria
Sheet ___ fields can hold aggregate formulas and feed data directly into dashboard metric widgets
COLLECT() returns an array of column values where a condition is met — commonly wrapped in ___ to display as a comma-separated string
// Get all blocked task names as a readable string
=(COLLECT(
[Task Name]:[Task Name],
[Status]:[Status],
"Blocked"
), ", ")
A single Smartsheet sheet supports a maximum of ___ inbound cell links
Smart ___ (2026) are AI-powered column types that automatically classify or summarize data in every row