Remove items by test: reject

The reject filter is the opposite of select. It iterates over a list and removes items that pass the given test, keeping only those that fail it.

This is useful when it is easier to describe what you want to exclude rather than what you want to keep. For example, you might want to remove all zero values from a list, exclude unavailable states, or filter out empty strings. Instead of writing a complex select with a negated condition, reject lets you express the exclusion directly and clearly.

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] | reject("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].)
[1, 2, 3]

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.

reject(
    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 that are truthy are removed. Common tests include equalto, greaterthan, lessthan, string, number, contains, and is_number.

Reject by truthiness

When no test is specified, reject removes items that are truthy, keeping only falsy values.

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] | reject | 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].)
[0, '', None]

Exclude specific values

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]: Remove unavailable states
{{
  ["on", "off", "unavailable", "on", "unknown"]
  | reject("equalto", "unavailable") | 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', 'off', 'on', 'unknown']

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 removed. Zero, empty strings, and None are kept because they are falsy.

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.

Remove zero values before averaging

Exclude zero readings that might skew an average calculation.

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]
{{
  [21.5, 0, 19.8, 22.3, 0]
  | reject("equalto", 0)
  | list
  | average
  | round(1)
}}
Result (floatA number that can have decimal places, like 21.5 or 3.14. Used for temperatures, percentages, and other measurements that need precision.)
21.2

Exclude non-numeric values

Remove values that are not valid numbers before performing calculations.

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")
  | reject("in", ["unavailable", "unknown"])
  | 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]

Remove empty strings

Clean up a list by removing empty or blank entries.

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 = ["kitchen", "", "bedroom", "", "hall"] %}
{{ items | reject("equalto", "") | 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].)
["kitchen", "bedroom", "hall"]

Exclude outlier values

Remove temperature readings that are outside a reasonable range.

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]
{{
  [21.5, 19.8, -40.0, 22.3, 99.9]
  | reject("greaterthan", 50)
  | reject("lessthan", -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.5, 19.8, 22.3]

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: