Try this:
Public Sub CommandButton1_Click() dim FilePath as string FilePath = "V:\B&E Ops Support\Billing And Enrollment\B&E National Unit\National & ASO Profile and COBRA Sheets\" If OptionButton1 = True Then ThisWorkbook.SaveAs FilePath & Range("B5").Value & ".xls" Unload Me End If If OptionButton2 = True Then ThisWorkbook.SaveAs FilePath & Range("B5").Value & ".xls" Sheets.PrintOut Unload Me End If End Sub
I haven't tested it, but I think that should work...
HTH,