Gmail カレンダー ドキュメント リーダー ウェブ その他
ヘルプ | ログイン
Google グループ

Excel save takes 18 times longer than Windows Explorer copy - why? Options
現在、このグループで最初に表示するトピックが多すぎます。このトピックを最初に表示するには、別のトピックからこのオプションを削除してください。
リクエストの処理中にエラーが発生しました。 もう一度やり直してください。
フラッグ
  メッセージ 4 件 - すべて折りたたんで表示  -  すべてをに翻訳 翻訳(すべてのオリジナルを表示)
投稿先のグループは Usenet グループです。このグループにメッセージを投稿すると、インターネット上のユーザーがメール アドレスを閲覧できるようになります。
返信メッセージが送信されていません。
投稿しました。
 
差出人:
宛先:
Cc:
フォローアップ先:
Cc を追加 | フォローアップ先を追加 | 件名を編集
件名:
確認:
確認のため、下の画像に表示されている文字か、アクセシビリティ アイコンをクリックすると聞こえる数字を入力してください。 聞こえた番号を入力します
 
Chrisso  
プロフィールを表示   に翻訳 翻訳(オリジナルを表示)
 詳細オプション 1月30日, 午前2:55
ニュースグループ: microsoft.public.excel.programming
差出人: Chrisso <chris75sut...@gmail.com>
日付: Fri, 29 Jan 2010 23:55:47 -0800 (PST)
ローカル: 2010年1月30日(土) 午前2:55
件名: Excel save takes 18 times longer than Windows Explorer copy - why? Options
Hi All

I have an Excel system with about 10 sheets and loads of VBA modules
and classes.

It resides on a network at my company's headquarters.

When I copy the file from my desktop to the server using Windows
Explorer drag and drop it takes about 6 seconds.

However if I open the Excel file from the server from my PC and save
it using Excel the save time is 90 seconds.

Is this normal? My users are complaining about the time it takes to
save after editing. It also means that they are not saving often and
are risking losing changes. Any thoughts?

If the length of my save is normal then what should I do to reduce
the
size of my file for a quicker save? How much does VBA code add to the
file size or should I be looking at the size of each worksheet?

Cheers
Chrisso


    転送  
メッセージを投稿するには、ログインする必要があります。
メッセージを投稿するには、まず最初にこのグループに参加する必要があります。
投稿する前に、[設定] ページでニックネームを更新してください。
投稿に必要な権限がありません。
ディスカッションの件名が「Excel save takes 18 times longer than Windows Explorer copy - why?Options」に変更されました。" - 投稿者 Simon Lloyd
Simon Lloyd  
プロフィールを表示   に翻訳 翻訳(オリジナルを表示)
 詳細オプション 1月30日, 午前3:59
ニュースグループ: microsoft.public.excel.programming
差出人: Simon Lloyd <Simon.Lloyd.45l...@thecodecage.com>
日付: Sat, 30 Jan 2010 08:59:42 +0000
ローカル: 2010年1月30日(土) 午前3:59
件名: Re: Excel save takes 18 times longer than Windows Explorer copy - why?Options

When you simply drag and drop Excel does not need to make any
calculations, however when the workbook is opened/closed calculations
may take place, try setting calculation to manual in the beforesave
event or beforeclose event, like this:

With Application
.Calculation = xlManual
.MaxChange = 0.001
.CalculateBeforeSave = False
End With don't forget to turn it back on in the open event!

Chrisso;628211 Wrote:

--
Simon Lloyd

Regards,
Simon Lloyd
'Microsoft Office Help' (http://www.thecodecage.com)
------------------------------------------------------------------------
Simon Lloyd's Profile: 1
View this thread: http://www.thecodecage.com/forumz/showthread.php?t=174829

[url=&quot;http://www.thecodecage.com"]Microsoft Office Help[/url]


    転送  
メッセージを投稿するには、ログインする必要があります。
メッセージを投稿するには、まず最初にこのグループに参加する必要があります。
投稿する前に、[設定] ページでニックネームを更新してください。
投稿に必要な権限がありません。
Joe User  
プロフィールを表示   に翻訳 翻訳(オリジナルを表示)
 詳細オプション 1月30日, 午前10:53
ニュースグループ: microsoft.public.excel.programming
差出人: "Joe User" <joeu2004>
日付: Sat, 30 Jan 2010 07:53:52 -0800
ローカル: 2010年1月30日(土) 午前10:53
件名: Re: Excel save takes 18 times longer than Windows Explorer copy - why?Options

"Simon Lloyd" <Simon.Lloyd.45l...@thecodecage.com> wrote:
> try setting calculation to manual in the beforesave
> event or beforeclose event, like this:

> With Application
> Calculation = xlManual
> MaxChange = 0.001
> CalculateBeforeSave = False
> End With

But don't forget the dots before property names; to wit:

With Application
   .Calculation = xlManual
   .MaxChange = 0.001
   .CalculateBeforeSave = False
End With

And should MaxChange really be part of the process?

We do see it when we record a macro while setting the manual calculation
option.  But then again, we also see PrecisionAsDisplayed being set, yet we
are wise enough to recognize that as extraneous.

----- original message -----

"Simon Lloyd" <Simon.Lloyd.45l...@thecodecage.com> wrote in message

news:Simon.Lloyd.45lh53@thecodecage.com...


    転送  
メッセージを投稿するには、ログインする必要があります。
メッセージを投稿するには、まず最初にこのグループに参加する必要があります。
投稿する前に、[設定] ページでニックネームを更新してください。
投稿に必要な権限がありません。
Chrisso  
プロフィールを表示   に翻訳 翻訳(オリジナルを表示)
 詳細オプション 2月4日, 午前2:12
ニュースグループ: microsoft.public.excel.programming
差出人: Chrisso <chris75sut...@gmail.com>
日付: Wed, 3 Feb 2010 23:12:52 -0800 (PST)
ローカル: 2010年2月4日(木) 午前2:12
件名: Re: Excel save takes 18 times longer than Windows Explorer copy - why?Options
On 30 Jan, 08:59, Simon Lloyd <Simon.Lloyd.45l...@thecodecage.com>
wrote:

Thanks - i will give it a try.

Chrisso


    転送  
メッセージを投稿するには、ログインする必要があります。
メッセージを投稿するには、まず最初にこのグループに参加する必要があります。
投稿する前に、[設定] ページでニックネームを更新してください。
投稿に必要な権限がありません。
メッセージの終わり
« ディスカッションに戻る « 新しいトピック     過去のトピック »

グループを作成 - Google グループ - Google ホーム - 利用規約 - プライバシー ポリシー
©2010 Google