A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi MarkRrrrRR, hope you're doing well. I’m Ian, and I’m happy to help you today.
As of now, there is no setting that will remove a particular file in the recent list.
It is either you remove it manually one by one or remove it all.
this can be done via VBA Macro. In my macro below, this will remove file in the recent list with "RecentRemove" text in the filename. This can be change based on the your need.
Sub Clear_Recent_List()
Dim i, OriginalMax As Long
On Error Resume Next
OriginalMax = Application.RecentFiles.Maximum
Application.RecentFiles.Maximum = 50
For i = Application.RecentFiles.Count To 1 Step -1
If InStr(Application.RecentFiles(i).Name, "RecentRemove") > 0 Then
Application.RecentFiles(i).Delete
End If
Next
Application.RecentFiles.Maximum = OriginalMax
End Sub
This is a user-to-user support forum and I am a fellow user.
I hope this helps, but please let me know if you need anything else.