答案:Workbook.close是指关闭一个工作簿,它是在VBA(Visual Basic for Applications)中用来关闭正在使用的Excel工作簿的方法。当Workbook.close被调用时,当前打开的工作簿将被关闭,并且任何正在运行的VBA子过程(sub)也会随之退出。 在Excel的VBA编程中,可以通过调用Workbook.close方法来关闭工作簿,以便在代码执行过程中控...
示例 此示例关闭 Book1.xls,并放弃所有对此工作簿的更改。 VB 复制 Workbooks("BOOK1.XLS").Close SaveChanges:=False 支持和反馈 有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。反馈 此页面是否有帮助? 是 否 中文...
Office VBA 參考 Access Excel 概觀 概念 物件模型 概觀 AboveAverage 物件 Action 物件 Actions 物件 AddIn 物件 AddIns 物件 AddIns2 物件 Adjustments 物件 AllowEditRange 物件 AllowEditRanges 物件 應用式物件 Areas 物件 Author 物件 AutoCorrect 物件 AutoFilter 物件 AutoRecover 物件 Axes 物件 Axis 物件 Axis...
ActiveWorkbook.Close SaveChanges:=False In this code, I have specified “False” for the “SaveChanges” argument. So, VBA will ignore any changes in the workbook that are not saved. If you want to close a specific workbook, you can use its name, just like the following code. Workbooks("...
How to make the referenced book close automatically, when the Client book is closed with VBA? Ideally, the solution would close the referenced book even if other workbooks are open.i wouldn't be able to use a solution which requires programmatically removing the reference from the client, as ...
就是将打开的文件关闭 可以释放该文件的占用空间的 如果从文件读取数据到数组变量里 那么变量不释放,还是占用空间的 所以楼主的问题要结合具体应用的
我们每天都要统计企业的生产量,但有时候可能还没有把数据录入完就点了关闭,就象下表这样下午的数据没有填,这时VBA会提醒我们数据未填完,并用光标选择该行进行提示。 每日生产情况统计表 Private Sub Workbook_BeforeClose(Cancel As Boolean) On Error Resume Next ...
VB複製 Workbooks("BOOK1.XLS").Close SaveChanges:=False 支援和意見反應 有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱Office VBA 支援與意見反應。 意見反應 此頁面對您有幫助嗎? YesNo
Workbooks(name1).Close SaveChanges:=False '关闭指定name1 ThisWorkbook.Close SaveChanges:=False '关闭指定工作薄 ActiveWorkbook.Close SaveChanges:=False '关闭当前活动工作薄
I'm Writing a VBA macro in excel that is supposed to open "fileB.xls" and then close immediately after it opens. Since we will be talking about 3 excel files I'll call the first one fileA. The code for the buttons on the userform for file A look like the following. Private Sub ...