Ok,
this is what I have
Sub PrintAndClear()
'
' PrintAndClear Macro
' Macro recorded 9/10/2008 by Sigi Mondragon
'
' Keyboard Shortcut: Ctrl+Shift+Q
'
response = MsgBox("Do you want to Save this to a new file?" _
, vbYesNo, "Save As")
If response = 6 Then
Name = InputBox("Enter a Filename", "Get Filename")
If Name = "" Then End
ActiveWorkbook.SaveAs Filename:="P:\" & Name & ".xls"
End If
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Workbooks.Open Filename:="P:\Calculations Sheet-2008 WSO.xls"
Range("E6").Select
End Sub
so I will like for the File Saved to Close and The Calculations Sheet-2008
to open
if I add Active Window after the printout is done it will close the files
but will not ope the Calculations Sheet