@BoruzsRobin ,
I use a formula based on the last three char of the meeting name. But you have to set a local collection before that.
In OnStart() property of the app use:
ForAll(
Sequence(26),
Collect(alphabetCode,
{ID:Value*2,Char:Char(Value+64)},
{ID:Value*2+1,Char:Char(Value+96)}
)
)
and in your Fill property of the label to:
RGBA(
Round(LookUp(alphabetCode,Right(Self.Text,1)=Char,ID)*4,0),
Round(LookUp(alphabetCode,Mid(Self.Text,Len(Self.Text)-1,1)=Char,ID)*4,0),
Round(LookUp(alphabetCode,Mid(Self.Text,Len(Self.Text)-2,1)=Char,ID)*4,0),
1
)
It's just a silly thought 😊 !
Hope it helps !