Notifications
Announcements
If(Checkbox1.Value = true, true, false)
Bind the Checkbox to a Boolean Field: Ensure that the Dataverse field you're trying to update is a Yes/No (Boolean) field. The Checkbox control should be linked to this field. Checkbox1.Default = ThisItem.IsActive
Patch the Value from the Checkbox: To update the Dataverse field with the checkbox value, you need to use the Patch function. This function will update the Boolean field in Dataverse based on whether the checkbox is checked (true) or unchecked (false).
true
false
Patch( 'YourDataverseTable', ThisItem, { IsActive: Checkbox1.Value } )
SubmitForm (If Using a Form): If you're using a form control to manage the data, ensure the checkbox is bound to the correct Dataverse field: Set the Checkbox1.Default property to the field from Dataverse, as in:
Checkbox1.Default = ThisItem.IsActive.
SubmitForm(FormName)
Error Handling: If the field isn't updating, ensure: The field is correctly mapped in Dataverse (Boolean type). The correct permissions are available for updating the record.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Kalathiya 402
WarrenBelz 380 Most Valuable Professional
MS.Ragavendar 293 Super User 2025 Season 2