Hi Everyone,
Can someone help me in making the following code direct the file to save in the following directory?
V:\B&E Ops Support\Billing And Enrollment\B&E National Unit\National & ASO Profile and COBRA Sheets
Thanks in advance for your helpPublic Sub CommandButton1_Click() If OptionButton1 = True Then ThisWorkbook.SaveAs Range("B5").Value & ".xls" Unload Me End If If OptionButton2 = True Then ThisWorkbook.SaveAs Range("B5").Value & ".xls" Sheets.PrintOut Unload Me End If End Sub