Hey folks,
I have an app with multi select check boxes that work great for the initial form input, however on edit/display, I can't seem to get the logic right for the forms to reference the sharepoint list and check the selected boxes from the Choices column. Any guidance would be appreciated.
The new form logic
Update for datacard:
ForAll(Split(Concatenate(If(check1.Value,check1.Text&",",""),If(check2.Value,check2.Text&",",""),If(check3.Value,check3.Text&",",""),If(check4.Value,check4.Text&",",""),If(check5.Value,check5.Text&",",""),If(check6.Value,check6.Text,"")),","),{Value:Result})
and in each checkbox I've got this
If(check1.Text in First('ListName').Values.Value,true,false)
So my question... how do I recall these selections once they're saved in the list? I've been unsuccessfully arm wrestling this so far. Thanks all