Here's my macro for my initial save:
'This one opens the "Projections" template
Workbooks.Open _
("\\12AUST1001FS01\SHARE10011\Budget\SOBUDGET\CPS\Reports\Position\Templates\Projections.xls"), ReadOnly:=True, UpdateLinks:=True
'Now we name the workbook and save it to our desktop
Application.DisplayAlerts = False
Dim WshShell As Object
Set WshShell = CreateObject("WScript.Shell")
DTAddress = CreateObject("WScript.Shell").SpecialFolders("Desktop") & Application.PathSeparator
ActiveWorkbook.SaveAs DTAddress & "2BDeleted"
. Following this I do heavy manipulation to the workbook. At the end of things, I do a save and then close out the workbook that initiated everything:
Run "PivotUpdate"
TwoB.Save
Workbooks("MFR Projection Tool.xls").Close False
End Sub
I'm not familiar with "Trusting" a location. What do I have to do to make a location "Trusted" by Excel?
Bookmarks