A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
If you put the button outside the multipage control you can use the following to move next through all pages:
=======================================
With Me.MultiPage1
If .Value + 1 < .Pages.Count Then .Value = .Value + 1
End With
========================================
To move backwards put another button OUTSIDE the Multipage control and add the follwoing code:
=======================================
With Me.MultiPage1
If .Value + 1 > 1 Then .Value = .Value - 1
End With
=======================================