0
votes

I have a nice, short macro that does a "save as" of an active workbook to a specified path. All works fine, however I would like to hide the prompt or at least the path that pops up ("uploading to C:/blabla/blabla/ location") - because I don't want the users to be able to see the path name or where the file is uploading.

I have tried Application.DisplayAlerts = False but it doesn't seem to do the trick. Do you have any tips on how to achieve this?

Thanks, Coco

1

1 Answers

0
votes

is it a message box or something else because a script like below does not give out a pop up.

Sub net()

ActiveWorkbook.SaveAs ("D:\dave\abcd\Desktop\abcd.xlsx")
End Sub