|
-
Nov 2nd, 2000, 02:49 PM
#1
Does anyone know how to turn the screen update off in excel
I thought it was...
Dim O as object
Set O = CreateObject("excel.application")
O.screenupdate = false
Nope....Doesn't work
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Nov 2nd, 2000, 04:17 PM
#2
Addicted Member
I don't understand what you are asking. What do you mean by screen update? Of course, if you know how to do it in Excel, just record a macro and see how to do it in automation.
-
Nov 2nd, 2000, 09:02 PM
#3
Got it!
It was...
.screenupdating = false
makes automation faster....then
true when done...displays data.
JPnyc rocks!! (Just ask him!)
If u have your answer please go to the thread tools and click "Mark Thread Resolved"
-
Nov 2nd, 2000, 10:01 PM
#4
Fanatic Member
Try this:
Code:
Option Explicit
Sub Main()
Application.ScreenUpdating = False
Dim int_X As Integer
Range("A1").Select
Do
int_X = int_X + 1
ActiveCell.Value = int_X
ActiveCell.Offset(1, 0).Select
Loop Until int_X = 4000
End Sub
If this work, you will see all data in cells at once.
Chemically Formulated As:
Dr. Nitro
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|