Hey,
I'm trying to do a macro in Excel, sadly im hopeless at them and was wondering if any one on here could help me
basically i want to create a macro which will exit the current workbook, BUT give the option whether to save or not. currently ive got one which closes the workbook and automatically saves it.
Sub ExitExcel()
ActiveWorkbook.Close SaveChanges:=True
Application.Quit
End Sub
but i need the option of not saving too. so yeah...
xx