Grouping sensors that report non-numeric data

Thank you for your input:

That is more elegant as one can simply add or remove entities to the label group.

This would still not work. What is missing is a template behind condition: :slight_smile:

            - condition:  template
              value_template: "{{ label_entities('Bad/WC') | select('is_state', ['open','on']) | list | count > 0}}"

With this addition the actions ffinally execute.

Many thanks for your help! I believe I mostly got it now

Good catch! Sorry I missed that.

You might consider removing the last condition of your choose block and moving the actions to a default block. If neither of the first two conditions had a match then this should be the only alternative. Additionally, adding or removing entities from the label group would break your current logic because the count would no longer == 6.

I had already realized that the check is not necessary and removed it.