Select a multi-select checkbox if a text field is not blank
Thank you for the suggestions. The problem with the default as suggested for Checkbox8, is the checkbox isn’t only just for the Other option. The Gallery displays the choices and a variable is used to update the field in the SharePoint list.
Below are the property values for the Academic Staff_DataCard1, Gallery8, Checkbox8 and the text field AcadOther_DataCard1.
Gallery8 ITEM property pulls the choices from the SharePoint list datasource. Checkbox8 TEXT property = ThisItem.Value Checkbox8 DEFAULT property = ThisIteminacademicstaffcombobox.SelectedItems Academicstaffcombobox VISIBLE property = false Academic Staff_DataCard1 UPDATE property = Coalesce(varAcadStaff,ThisItem.'Academic Staff') For the text field, AcadOther_DataCard1, the REQUIRED property = If("Other (complete text box below)"invarAcadStaff.Value,true,false)
Select a multi-select checkbox if a text field is not blank
HI,
in your Other CHeckbox default
If(!IsBlank(MyTextBox.Text), true, false)
So this will check the box the second the textbox has something in it.
please mark as the answer if this helps you.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.