Hi Team,
I have a Gallery control in app and i am storing the total number of rows of that gallery in a label control. Now i need to change the combobox value of a form based on the value in the label control..
In label control text property : CountRows(Gallery1.AllItems);
In defaultSelectedItems of combobox: If(Value(label.Text)<=2,{Value:"Choice 1"},If(Value(label.Text}>2,{Value:"Choice 2"},ThisItem.Status));
This is circular reference error.
Any other way to achieve this?
Any help would be appreciated.