Hi!
I am working on a app looking like below.

The three grey boxes are different insurance types.
If you click on one insurance type (it becomes blue) and a new gallery appears below where you can choose different brokers under the chosen insurance.
I want to make the text red on the chosen insurance if the gallery of brokers is empty.
In the Color field I have written:
ForAll( Filter(cInsuranceType2; RemovedSplit=false) As Insu;
If(CountRows( Filter(cInsuranceTypeSplit_BrokerSplit_New; InsuranceTypeId = Insu.InsuranceTypeId)) = 0;
Red;Black))
But this doesn't work, because it's complaining about not returning a color type.
Which I think I do?
Filter(cInsuranceType2; RemovedSplit=false) --- All Insurance types boxes that the user has chosen
cInsuranceTypeSplit_BrokerSplit_New ----- Collection of brokers
cInsuranceType2 and cInsuranceTypeSplit_BrokerSplit_New share the column InsuranceTypeId to know which Insurance is chosen by the user.