我创建了一个包含许多 .xls 和 .xlsm 工作表的文件夹,该文件夹将分发给公司中的许多人,为了不改变文件夹中工作表的完整性,我想禁用在此文件夹中保存任何文件,所有保存的填充都必须“另存为”在与名为 project.Here 的文件夹不同的位置。这是迄今为止发现的内容。
干杯
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
' Following line will prevent all saving
Cancel = True
' Following line displays the Save As Dialog box
If SaveAsUI Then SaveAsUI = True
' How do I forbid the folders path ???
End Sub