Group items by attribute: groupby

The groupby filter groups items in a list by a common attribute, producing a list of (grouper, list) pairs where grouper is the attribute value and list contains all items that share that value.

This is extremely useful when you want to organize 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] by a shared property. For example, you can group lights by their area, sensors by their state, or devices by their manufacturer. The result lets you iterate over each group and display or process the items together. It works especially well with expand to organize large collections of entities into meaningful categories.

Usage

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

As a filter
{% for state, entities in expand("group.all_lights") | groupby("state") %}
  {{ state }}: {{ entities | map(attribute="entity_id") | join(", ") }}
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
off: light.bedroom, light.garage
on: light.kitchen, light.living_room

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.

groupby(
    value: list,
    attribute: str,
    default: Any = None,
) -> list[tuple]

Function parameters

The following parameters can be provided to this filter.

value list Required

The list of items to group.

attribute string Required

The attribute to group by. Supports dotted notation for nested attributes (for example, attributes.device_class).

default any (Optional)

The default value to use for items that do not have the specified attribute. If not provided, items without the attribute are excluded.

Grouping with dotted attributes

Use dotted notation to group by nested attributes.

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]: Group sensors by device class
{% for device_class, entities in expand("group.all_sensors")
  | groupby("attributes.device_class") %}
  {{ device_class }}: {{ entities | length }} sensors
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
humidity: 3 sensors
temperature: 5 sensors

Default value for missing attributes

Use the default parameter to include items that lack the grouping attribute.

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]
{% for area, entities in expand("group.all_lights")
  | groupby("attributes.area", default="Unknown") %}
  {{ area }}: {{ entities | map(attribute="entity_id") | join(", ") }}
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Kitchen: light.kitchen_ceiling, light.kitchen_counter
Living room: light.living_room_main
Unknown: light.unnamed_bulb

Good to know

  • The input must be sorted by the grouping attribute already. This filter only groups adjacent items with matching values.
  • Items without the attribute are dropped unless you supply a default.
  • Returns a list of (grouper, items) tuples, which you unpack in a for loop.

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.

Group entities by state

Group all entities in a group by their current state value.

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]
{% for state, entities in expand("group.all_lights") | groupby("state") %}
  {{ state | upper }}: {{ entities | map(attribute="name") | join(", ") }}
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
OFF: Bedroom light, Garage light
ON: Kitchen light, Living room light

Count entities per group

Show a summary of how many entities are in each group.

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]
{% for state, entities in expand("group.all_lights") | groupby("state") %}
  {{ entities | length }} light(s) are {{ state }}
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
2 light(s) are off
2 light(s) are on

Group sensors by area and find averages

Group temperature sensors by their area and calculate the average for each.

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]
{% for area, sensors in expand("group.temperature_sensors")
  | groupby("attributes.area") %}
  {{ area }}: {{ sensors | map(attribute="state") | map("float")
     | average | round(1) }}°C
{% endfor %}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
Bedroom: 19.8°C
Kitchen: 22.1°C
Living room: 21.3°C

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: