Close workbook with or without saving VBA

Sub CloseNoSave() 'Close the workbook without saving it ThisWorkbook.Close savechanges:=False End Sub Sub CloseForceSave() 'Save the workbook, then close it ThisWorkbook.Close savechanges:=True End Sub