diff --git a/source/_lovelace/entity-filter.markdown b/source/_lovelace/entity-filter.markdown
index 3f6e6da06e5..f19775a52d6 100644
--- a/source/_lovelace/entity-filter.markdown
+++ b/source/_lovelace/entity-filter.markdown
@@ -120,6 +120,28 @@ card:
type: glance
title: People at home
```
+
+
+ Entity filter combined with glance card.
+
+
+You can also specify multiple state_filters, in which case matching any condition will display the entity. This example will display everyone who isn't at home or at work.
+
+```yaml
+type: entity-filter
+entities:
+ - device_tracker.demo_paulus
+ - device_tracker.demo_anne_therese
+ - device_tracker.demo_home_boy
+state_filter:
+ - operator: "!="
+ value: home
+ - operator: "!="
+ value: work
+card:
+ type: glance
+ title: Who's Running Errands
+```
Specify filter for a single entity
@@ -138,8 +160,3 @@ entities:
value: 50
attribute: humidity
```
-
-
-
- Entity filter combined with glance card.
-