Hi @biancadevera
I assume you are looking to update Datasource right away. It means when you check and UnCheck the checkbox.
Set OnCheck property of Checkbox to
Patch(SPList,ThisItem,{ColumnName:true})
Set OnUncheck property of Checkbox to
Patch(SPList,ThisItem,{ColumnName:false})
Make sure to set the Default property of Checkbox control to
ThisItem.ColumnName
And you may need to Remove the Update property of the DataCard since we saved the data already.
Note: It will be lots of calls Datasource for each check and UnCheck.
If you are not looking to Save immediately then Set the Update property of DataCard to
CheckBoxName.Value
Thanks,
Stalin - Learn To Illuminate