3. What’s the difference between a calculated column and a rollup column?

A calculated column uses fields from the same record or a related parent record to calculate a value in real time.
Example: First Name + Last Name = Full Name.

A rollup column calculates an aggregate value from related child records, such as SUM, COUNT, MIN, MAX, or AVG.
Example: Totaling all Opportunity values for an Account.

Calculated ColumnRollup Column
Data sourceSame record or related parent recordRelated child records
CalculationCalculated in real timeCalculated asynchronously
PurposeCalculates a valueAggregates related records
FunctionsMath, text, conditions, etc.SUM, COUNT, MIN, MAX, AVG
ExampleQuantity × Price = TotalTotal Opportunity value for an Account

Interview tip: Remember Calculated = current record; Rollup = related records.

Scroll to Top