Ive been playing around a bit and I tweeked out the original code a little bit and I want to be able to close the present form and then the switchboard all in the one button. Here is what I have so far:<br><br>Private Sub BackView_Click()<br> 'goes back to switchboard and closes form<br><br> Dim stDocName As String<br> Dim stLinkCriteria As String<br><br> stDocName = "Switchboard"<br> DoCmd.OpenForm stDocName, , , stLinkCriteria<br> DoCmd.Close acForm, Me.Name<br><br> <br>End Sub<br><br>Private Sub ExitView_Click()<br>'closes form<br>DoCmd.Close acForm, Me.Name<br> <br>End Sub