0
是否創建新工作簿而不將文件名添加到跳轉列表中的Excel?Excel VBA - 創建一個新的工作簿,但不會將其添加到跳轉列表
是否創建新工作簿而不將文件名添加到跳轉列表中的Excel?Excel VBA - 創建一個新的工作簿,但不會將其添加到跳轉列表
您可以刪除RecentFiles
收集工作簿中的條目,就像這樣:
Dim r As RecentFile
Dim wb As Workbook
' Change this to point to the workbook to be removed from the jump list
Set wb = ThisWorkbook
For Each r In Application.RecentFiles
If r.Path = wb.FullName Then
r.Delete
Exit For
End If
Next r