You can fill in the textboxes before showing it using code like:
Sub ShowForm()
Dim frm as Userform1
Set frm = New Userform1
frm.Textbox1.Value = 3
frm.Show
End Sub
and to return the data, add a button to the second page and use code like:
Private Sub CommandButton3_Click()
Dim ctl As MSForms.Control
For Each ctl In Me.MultiPage1.Pages(1).Controls
If TypeName(ctl) = "TextBox" Then
MsgBox ctl.Name & ": " & ctl.Value
End If
Next ctl
End Sub
This will report the values in a series of messageboxes - you'll need to adjust it to put them wherever you like.
Bookmarks