Sum values in a list: sum

The sum filter adds up all the values in a list and returns the total. You can optionally specify an attribute to sum a specific property from each item, and a start value to begin the summation from.

This is useful whenever you need to total up numeric values from sensorsSensors return information about a thing, for instance the level of water in a tank. [Learn more] or entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more]. For example, you might want to calculate total energy consumption across multiple meters, sum up the brightness values of all lights, or add up the number of items detected by multiple sensors. It works well at the end of a filter chain after extracting and converting values to numbers.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

As a filter
{{ [10, 20, 30] | sum }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
60

Function signature

The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).

Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.

sum(
    value: list,
    attribute: str | None = None,
    start: int | float = 0,
) -> int | float

Function parameters

The following parameters can be provided to this filter.

value list Required

The list of values to sum. Items should be numeric.

attribute string (Optional)

If provided, this attribute is extracted from each item and summed. Useful for summing a property from a list of objects without needing a separate map call.

start float (Optional, default: 0)

A starting value for the sum. Defaults to 0.

Good to know

  • An empty list returns 0 (or the start value if you provided one) rather than raising an error.
  • Every item in the list needs to be numeric. If states or attributes might be strings, pipe them through map("float") or map("int") first.

Sum with attribute

Instead of using map(attribute=...) followed by sum, you can pass the attribute name directly to sum.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{% set items = [{"name": "a", "value": 10}, {"name": "b", "value": 20}] %}
{{ items | sum(attribute="value") }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
30

Sum with a start value

Use the start parameter to add an offset to the total.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ [10, 20, 30] | sum(start=100) }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
160

Try it yourself

Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].

More examples

Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.

Total energy consumption across meters

Sum the state values from multiple energy sensors.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{
  expand("group.energy_meters")
  | map(attribute="state")
  | map("float")
  | sum
  | round(2)
}}
Result (floatA number that can have decimal places, like 21.5 or 3.14. Used for temperatures, percentages, and other measurements that need precision.)
47.83

Total brightness of all lights that are on

Sum the brightness attribute across active lights.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{
  expand("group.all_lights")
  | selectattr("state", "eq", "on")
  | map(attribute="attributes.brightness")
  | sum
}}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
447

Calculate total daily cost

Multiply each sensor’s consumption by a rate and sum the results.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]: Total energy cost
{% set rate = 0.25 %}
{{
  expand("group.energy_meters")
  | map(attribute="state")
  | map("float")
  | sum
  | multiply(rate)
  | round(2)
}}
Result (floatA number that can have decimal places, like 21.5 or 3.14. Used for temperatures, percentages, and other measurements that need precision.)
11.96

Still stuck?

The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.

Tip

AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.

Related template functions

These functions work well alongside this one: