FileSave command in project VBA

O

Oded

hi,
I'm tring to run the following code, but the run stops (with out errors)
after the FileSave command and do not execute the FileClose command...
Why is that?

Remark - I'm tring to open file from the server, save it on the server and
close it

sub test()
FileOpen Name:="file name"
CalculateAll
FileSave
FileClose
End Sub
 
Top