Hi Ted
The code is almost OK, but page indices start with zero, so to display Page1 you need to set Multipage.Value to zero. Decrease the values by one E.g.
[vba]Private Sub btngenPrevious_Click()
'instad of Employeeinduction.MultiPage1.Value = 1
Employeeinduction.MultiPage1.Value = 0
End Sub[/vba] (I made all necessary changes and attached the modified workbook.)
Also, you may want to consider a pair of buttons off the multipage that would take care of all page turnings. This, too, is included in the modified workbook.
Regards,
Jimmy