Hi @Barry_McKee,
To ensure that users set a toggle to true before submitting a SharePoint form in PowerApps, follow these steps:
Toggle Default Property:
For the toggle control, set the Default property based on your condition. If you want the toggle to default to true, use a formula like:
Default = true
Adjust the condition as needed (e.g., based on other form fields).
Validation Rule:
Create a validation rule for the submit button. If the toggle must be true, use the Visible property of the button to control its visibility:
Visible = ToggleControl.Value = true
This ensures that the button is only visible when the toggle is set to true.
User Experience:
When users try to submit the form without setting the toggle to true, the button won’t be visible, preventing submission.
Remember to adapt these steps to your specific app and requirements.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Sunil Pashikanti - Tech Blog: PowerApps