Group State Question

Is it possible to exclude specific items defined in the group from counting the group state on the UI? I have fan items that I put into a group which have the following items: switch Power, dimmer Speed, switch Light. I would like the group state to mirror the status of the Power item and ignore the other two items.

No. They’re either in a Group, or not in a Group.

If you are using a sitemap based UI, you can create a functional equivalent of what you want

Text item=Power label="Your group text [%s]" {
   Default item=Power
   Default item=Speed
   Default item=Light
}

The Text line behaves like a Group and will show the state of ‘Power’ with any text you like.
When clicked, it shows the sub-Items like a Group, but you manually specify those.

Thanks so much! Perfect quick solution.