Hi all,
I have a gallery that has a checkbox on each row. This will serve to mark if the row is approved or unapproved.
I am struggling with getting the value of the checkbox to update the underlying sharepoint list.
I have tried:
OnCheck property:
Patch(colNewExpenses,
ThisItem,
{APPROVALSTATUS:ApprovalCheckbox.Value}
)
ApprovalCheckBox is a Yes/No column in the sharepointlist.
An error is thrown that this formula has side effects and cannot be evaluated. Any suggestions to what might be causing this error?
I've also tried:
Patch(colNewExpenses,
Gallery3.Selected,
{APPROVALSTATUS:ApprovalCheckbox.Value}
)
No error is thrown but when the box is checked it does not update the sharepoint list.
Any ideas