Hi,
Hope someone can shed some light on this. I'm currently building forms for a SharePoint list called Feedback. In the Feedback create form, there is a choice field that allows the user to select a category (field value is called CategoryValue). Once that category is selected, a ComboBox(FAQs) displays a filtered list of FAQs from a second SharePoint list where the category in CategoryValue matches the Category value in the second List called KnowledgeBase. This works perfectly! I used a ComboBox because I could not get this filtered list to work on a dropdown list control.
The problem is that the user needs to select CategoryValue2, and then something from the FAQs combobox if it applies. This value should then be written into the text field called "Form_Detail" which has no dependencies. If no value is selected in the FAQ ComboBox, they can freeform the field "FAQ_Detail". When I, however, set the value of to Form_Detail to FAQ.selected.Detail, I am getting a circular reference error. These three controls have no dependencies or relationships to any other controls or fields in the form and it's driving me mad.
The only custom properties for the three controls are:
CategoryValue - items = Choices([@'Feedback'].Category)
FAQ - items = Filter(KnowledgeBase, Category.Value = CategoryValue_2.Selected.Value)
FAQ_Detail - items = FAQ.selected.Detail
As soon as I remove the reference to the FAQs ComboBox Value the error goes away but it doesn't work as we need it to.
Help?


Report
All responses (
Answers (