Filter items by test: select

The select filter iterates over a list and keeps only the items that pass a given test. Each item is tested individually, and only those for which the test returns true are included in the result.

This is one of the most powerful filters for working with lists of values in Home Assistant templates. You can use it to filter numeric values (keep only those above a threshold), filter strings (keep only those matching a pattern), or apply any of the built-in tests. It works on the items themselves; to filter by an attribute of each item, use selectattr instead. The select filter is commonly combined with map to first extract values, then filter them.

Usage

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

As a filter
{{ [1, 2, 3, 4, 5] | select("greaterthan", 3) | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[4, 5]

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.

select(
    value: list,
    *args: str,
) -> iterable

Function parameters

The following parameters can be provided to this filter.

value list Required

The list of items to filter.

args string (Optional)

The test name as a string, optionally followed by arguments for the test. If no test is provided, items are tested for truthiness. Common tests include equalto, greaterthan, lessthan, string, number, contains, is_state, and is_number.

Filter by truthiness

When no test is specified, select keeps items that are truthy (not false, 0, none, or empty).

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]
{{ [0, 1, "", "hello", none, true] | select | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[1, 'hello', True]

Common tests

Greater than / less than

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]: Temperatures above 20
{{
  [18.5, 21.3, 25.0, 19.8, 22.1]
  | select("greaterthan", 20)
  | list
}}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[21.3, 25.0, 22.1]

Equal to

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]: Keep only "on" values
{{ ["on", "off", "on", "off", "on"] | select("equalto", "on") | list }}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
['on', 'on', 'on']

Contains

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]: Weather conditions with rain
{{
  ["sunny", "light rain", "cloudy", "heavy rain"]
  | select("contains", "rain")
  | list
}}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
['light rain', 'heavy rain']

Good to know

  • Returns an iterable, not a list. Add | list before using it with length, first, or looping twice.
  • Without a test, truthy items are kept. Zero, empty string, and None are dropped because they are falsy.
  • To filter by an attribute of each item, use selectattr instead.

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.

Filter numeric values from sensor data

After extracting state values, keep only those that are valid numbers.

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.temperature_sensors")
  | map(attribute="state")
  | select("is_number")
  | map("float")
  | list
}}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[21.5, 19.8, 22.3]

Find temperatures above a threshold

Extract values, convert to float, and filter for those above a target.

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.temperature_sensors")
  | map(attribute="state")
  | map("float")
  | select("greaterthan", 21)
  | list
}}
Result (listAn ordered collection of values, like a list of entity IDs or a list of numbers. Written with square brackets in templates, for example [1, 2, 3].)
[21.5, 22.3]

Count values matching a condition

Combine select with list and length to count matching items.

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]: Number of open doors
{{
  expand("group.all_doors")
  | map(attribute="state")
  | select("equalto", "on")
  | list
  | length
}}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
2

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: