0
excelのjumplistにファイル名を追加せずに新しいワークブックを作成する方法はありますか?Excel VBA - jumplistに追加されていない新しいワークブックを作成
excelのjumplistにファイル名を追加せずに新しいワークブックを作成する方法はありますか?Excel VBA - jumplistに追加されていない新しいワークブックを作成
あなたはこのよう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
を