Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel saves to wrong folder

In Excel XP, I open two files from a local folder. Then I save (using 'Save
As') the first file to a folder on a network share, when I try and save the
second file to a different folder on the same network share, Excel saves the
second file to the folder the frst file was saved to. I can diplicate this on
multiple machines on multiple domains. I have applied all updates. Is there a
way to stop this from happening? The only work around I have come up with is
to close Excel between each 'Save As' attempt.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,718
Default Excel saves to wrong folder

when I try and save the second file to a different folder

When you do the second Save As are you saying that Excel will not allow you
to select another folder? Or are you saying that, even though you can
select another folder, Excel will not use it? I've have never run into
either problem (and I just tried it now with Excel 2002).

--
Jim
"T Dragos" <T wrote in message
...
| In Excel XP, I open two files from a local folder. Then I save (using
'Save
| As') the first file to a folder on a network share, when I try and save
the
| second file to a different folder on the same network share, Excel saves
the
| second file to the folder the frst file was saved to. I can diplicate this
on
| multiple machines on multiple domains. I have applied all updates. Is
there a
| way to stop this from happening? The only work around I have come up with
is
| to close Excel between each 'Save As' attempt.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Excel saves to wrong folder

I can select the folder, and it appears to save the file, but when I go
looking, the file is in the first folder. Again, the key seems to be the
first "save as" location is sticking when I try the second "save as". I am
using Excel 2002 (10.6816.6817) SP3

"Jim Rech" wrote:

when I try and save the second file to a different folder


When you do the second Save As are you saying that Excel will not allow you
to select another folder? Or are you saying that, even though you can
select another folder, Excel will not use it? I've have never run into
either problem (and I just tried it now with Excel 2002).

--
Jim
"T Dragos" <T wrote in message
...
| In Excel XP, I open two files from a local folder. Then I save (using
'Save
| As') the first file to a folder on a network share, when I try and save
the
| second file to a different folder on the same network share, Excel saves
the
| second file to the folder the frst file was saved to. I can diplicate this
on
| multiple machines on multiple domains. I have applied all updates. Is
there a
| way to stop this from happening? The only work around I have come up with
is
| to close Excel between each 'Save As' attempt.



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Excel saves to wrong folder

Does this help?

Sub savefileasandcomeback()
originalpath = ActiveWorkbook.Path
MsgBox op
ActiveWorkbook.SaveAs Filename:= _
"YourPath\YourName.xls", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
ChDir originalpath
End Sub

--
Don Guillett
SalesAid Software

"T Dragos" wrote in message
...
I can select the folder, and it appears to save the file, but when I go
looking, the file is in the first folder. Again, the key seems to be the
first "save as" location is sticking when I try the second "save as". I am
using Excel 2002 (10.6816.6817) SP3

"Jim Rech" wrote:

when I try and save the second file to a different folder


When you do the second Save As are you saying that Excel will not allow
you
to select another folder? Or are you saying that, even though you can
select another folder, Excel will not use it? I've have never run into
either problem (and I just tried it now with Excel 2002).

--
Jim
"T Dragos" <T
wrote in message
...
| In Excel XP, I open two files from a local folder. Then I save (using
'Save
| As') the first file to a folder on a network share, when I try and save
the
| second file to a different folder on the same network share, Excel
saves
the
| second file to the folder the frst file was saved to. I can diplicate
this
on
| multiple machines on multiple domains. I have applied all updates. Is
there a
| way to stop this from happening? The only work around I have come up
with
is
| to close Excel between each 'Save As' attempt.





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,718
Default Excel saves to wrong folder

I am using Excel 2002 (10.6816.6817) SP3

The same version as I was using. Very strange as it does not happen for me,
as I said. Sorry I do not have an answer.

--
Jim
"T Dragos" wrote in message
...
|I can select the folder, and it appears to save the file, but when I go
| looking, the file is in the first folder. Again, the key seems to be the
| first "save as" location is sticking when I try the second "save as". I am
| using Excel 2002 (10.6816.6817) SP3
|
| "Jim Rech" wrote:
|
| when I try and save the second file to a different folder
|
| When you do the second Save As are you saying that Excel will not allow
you
| to select another folder? Or are you saying that, even though you can
| select another folder, Excel will not use it? I've have never run into
| either problem (and I just tried it now with Excel 2002).
|
| --
| Jim
| "T Dragos" <T wrote in message
| ...
| | In Excel XP, I open two files from a local folder. Then I save (using
| 'Save
| | As') the first file to a folder on a network share, when I try and
save
| the
| | second file to a different folder on the same network share, Excel
saves
| the
| | second file to the folder the frst file was saved to. I can diplicate
this
| on
| | multiple machines on multiple domains. I have applied all updates. Is
| there a
| | way to stop this from happening? The only work around I have come up
with
| is
| | to close Excel between each 'Save As' attempt.
|
|
|




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Excel saves to wrong folder

I wasn't doing this through code. One of my users just likes to open multiple
Excel Spread sheets at the same time and then save them to different
locations.

"Don Guillett" wrote:

Does this help?

Sub savefileasandcomeback()
originalpath = ActiveWorkbook.Path
MsgBox op
ActiveWorkbook.SaveAs Filename:= _
"YourPath\YourName.xls", _
FileFormat:=xlNormal, Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, CreateBackup:=False
ChDir originalpath
End Sub

--
Don Guillett
SalesAid Software

"T Dragos" wrote in message
...
I can select the folder, and it appears to save the file, but when I go
looking, the file is in the first folder. Again, the key seems to be the
first "save as" location is sticking when I try the second "save as". I am
using Excel 2002 (10.6816.6817) SP3

"Jim Rech" wrote:

when I try and save the second file to a different folder

When you do the second Save As are you saying that Excel will not allow
you
to select another folder? Or are you saying that, even though you can
select another folder, Excel will not use it? I've have never run into
either problem (and I just tried it now with Excel 2002).

--
Jim
"T Dragos" <T
wrote in message
...
| In Excel XP, I open two files from a local folder. Then I save (using
'Save
| As') the first file to a folder on a network share, when I try and save
the
| second file to a different folder on the same network share, Excel
saves
the
| second file to the folder the frst file was saved to. I can diplicate
this
on
| multiple machines on multiple domains. I have applied all updates. Is
there a
| way to stop this from happening? The only work around I have come up
with
is
| to close Excel between each 'Save As' attempt.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? Richard Excel Discussion (Misc queries) 2 May 13th 23 11:46 AM
unhide menu bar in excel - just disappeared Sean Setting up and Configuration of Excel 12 April 4th 23 10:19 AM
Excel add-in w/ Library.dll file, ? proper folder for the dll MoldMan Excel Discussion (Misc queries) 0 April 26th 06 10:27 PM
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER MEGTOM New Users to Excel 5 October 27th 05 03:06 AM
Excel Range Value issue (Excel 97 Vs Excel 2003) Keeno Excel Discussion (Misc queries) 2 June 13th 05 02:01 PM


All times are GMT +1. The time now is 04:21 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"