
Announcements
To display Dataverse choice fields as checkboxes in a Canvas App:
Use the Choices function to retrieve the choices:
Choices([@YourTableName].StatusChoices)
Use a Gallery to display the choices with checkboxes. Set the Items property of the gallery to:
Choices([@YourTableName].StatusChoices)
Inside the gallery, set the Text property of the checkbox to:
ThisItem.Value
Track selections using a collection. For example, use Collect() on OnCheck and Remove() on OnUncheck to store selected choices.