Hi,
I`ve a requirement, where it needs to be multiple selection in Powerapps and update with same selection in sp list Choice field(Checkboxes).
Choice field name- Project Types
I got an issue while performing a way:
1) Project Types field - If I create multiple check boxes within field,

On OnCheck and OnUnCheck for each checkbox- Create temp collection
ClearCollect(
SelectedTypes,
If(chkMicro.Value,"Micro"),
If(chkCFA.Value,"CFA"),
If(chkPipe.Value,"Pipe")
);
ClearCollect(
SelectedTypes,Filter(
SelectedTypes,
!IsBlank(Value)
)
)
On Update of project type field- getting error -SelectedTypes.Value - erroe is - expecting record value.
Is there any other way to achieve this?