I have 2 multiple choice columns in my SharePoint list. Both of them I am using checkboxes on my form. This one works:
This one does not:
Default code: ThisItem.ProjectClassification
Code for checkboxes (All same except for chk name): If(chkMinor.Text in ThisItem.ProjectClassification.Value, true, false)
Update Code:
ForAll(
ForAll(Split(Concatenate(
If(chkNewDev.Value, chkNewDev.Text & ",", ""),
If(chkMinor.Value, chkMinor.Text & ",", ""),
If(chkSupport.Value, chkSupport.Text & ",", ""),
If(chkTraining.Value, chkTraining.Text & ",", ""),
If(chkMajor.Value, chkMajor.Text & ",", ""),
If(chkStaffAug.Value, chkStaffAug.Text & ",", ""),
If(chkProduction.Value, chkProduction.Text & ",", "")
),
","
), {Result: ThisRecord.Value}),
{Value: Result}
)
I'm getting "This formula uses scope, which is not presently supported for evaluation. The other field above also has the message but it works.


Report
All responses (
Answers (