Hi,
I am trying to make questions in my form mandatory. The issue I am facing is if somebody selects 'Very Satisfied' & 'Satisfied' as an option in the combo box, the text box does not appear but if they select any of the other options a text box appears to record why they are not satisfied.
The initial combo boxes I have a formula in my Display Mode that checks if every combo box has a value / is not blank. But I want to make it so if they select:
- Neither Satisfied of Dissatisfied
- Dissatisfied
- Very Dissatisfied
The text box for 'reason why' becomes mandatory too.
Display Mode button formula - If(!IsBlank(QualityOfHomeValue.Selected.Value) && !IsBlank(NeighbourHoodValue.Selected.Value) && !IsBlank(ListenActsValue.Selected.Value) && !IsBlank(ServiceByStockportHomesValue.Selected.Value) && !IsBlank(EasyToDealWithValue.Selected.Value) && !IsBlank(BuildingYouLiveInValue.Selected.Value) , DisplayMode.Edit, Disabled)
If I make the text boxes mandatory in this formula the Display Mode for the button would never change to Edit if they answered 'Very Satisfied' & 'Satisfied' which would not allow the user to continue as the formula is expecting a value in the text box.

No text box selection.

Text box = visible.
Any help on this would be greatly appreciated.