Hey I was hoping someone could help me. I have some code that saves a file a few different times. I have the display alerts off and screen updating and it hides most things but for some reason it will not hide the saveas dialog box they always show up and the screen refreshes a bit. Is there something I'm missing to get these hidden. I have a few other files that I didn't make that are configured differently and they don't do it so I am not sure why mine are. Also as a side note the file I'm saving when I try to open it I get that "Do you want to update Links" pop-up box. Is there code to save the file the last time and default the file to save do not update links and do not show dialog box? below is a sample of the code giving me issues.

"The file path was removed for security reasons."

Application.ScreenUpdating = False
Application.DisplayAlerts = False
ActiveWorkbook.Sheets("Master FOP List").Copy
ActiveWorkbook.saveas ("File location" & "FOP Master List - " & Format(Now(), "mm.dd.yyyy hh.mm") & ".xlsx")
On Error Resume Next
ActiveWorkbook.saveas ("File location" & "FOP Master List" & ".xlsx")
ActiveWorkbook.Close