I have a multipage userform including entry details page and am using "NEXT" button to move onto next pages. ( There are 5 question pages + 1 entry detail page) Here is the code that I am using to navigate.
If QuestionairePages.value < QuestionairePages.Pages.Count - 1 Then
QuestionairePages.value = QuestionairePages.value + 1
End If
Is there a way to disable the moving to the next pages unless all options buttons selected on specific pages?
IF Option1.Value = FALSE and Option2.Value = False Then MsgBox "Please complete the form" ELSE [the code in the question]I am unaware of a better way to assign option groups for form validation - Glitch_Doctor