Derive Group State from Member Items

Group state should be the items’ label if item state is on. Is this possible?

Example:
If a smoke detector is being activated I want to assign the label (room name) to the group state

items

Group:String	gRM_Alarm		"Smoke detected [%s]"
String			Room1			"Room 1"			(gRM_Alarm)
String			Room2			"Room 2"			(gRM_Alarm)
String			Room3			"Room 3"			(gRM_Alarm)

sitemap

Text item=gRM_Alarm label="Smoke detected [%s]" icon="fire"

No.

You could make another Item, for display purposes, populated by a rule triggered from group member change.

It is possible in a rule to alter the label of any Item, including a Group, to any text. But UIs are not guaranteed to be very clever about refrehing display from such a change.

I was kind of expecting this answer - thanks for clarification :+1: