MrExcel Message Board

Go Back   MrExcel Message Board > Question Forums > Excel Questions

Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only.

Reply
 
Thread Tools Display Modes
Old Feb 19th, 2002, 06:19 PM   #1
jgoulart
Board Regular
 
Join Date: Feb 2002
Location: John G
Posts: 62
Default

The following code runs extremely slow and I'm sure that someone here will be able to tell me what I'm doing wrong, or something that I'm not doing as efficiently as possible. This is the code of a command button on a userform that accepts 2 dates breport.sdate and breport.edate. It opens a different excel file that has approximately 1000 rows and 50 filled columns. It sequentially goes through the rows on a date column and compares if it compares within the range then it will copy about 7 or so cells on that row to a different sheet. It took about 1 1/2 minutes to process 137 records. I know that my code probably has lots of problems but hopefully someone will give me an idea of how to speed it up. Here is the code:

Dim rCtr
Dim x
Dim j
Dim wb1 As String
Dim wb2 As String
Dim stdate As Date
Dim endate As Date
Dim fname As String
Dim path As String

Application.ScreenUpdating = False
stdate = breport.sdate
endate = breport.edate
wb1 = ActiveWorkbook.name
path = "c:HInv_data"
fname = "HIdbase.xls"

'test date inputs to see if they are dates
If IsDate(stdate) = False Then
MsgBox "Starting date must be a date in mm/dd/yy format"
Exit Sub
End If
If IsDate(endate) = False Then
MsgBox "Ending date must be a date in mm/dd/yy format"
Exit Sub
End If
'open database file
Application.DisplayAlerts = False
Workbooks.Open Filename:=path & fname
wb2 = ActiveWorkbook.name

'count rows of database
rCtr = Workbooks(wb2).Sheets("database").UsedRange.Rows.Count
Workbooks(wb1).Sheets("Report").Activate
j = 10
For x = 2 To rCtr
'strip data if between dates
If Workbooks(wb2).Sheets("database").Cells(x, 10) >= stdate And _
Workbooks(wb2).Sheets("database").Cells(x, 10) <= endate Then
Workbooks(wb1).Sheets("Report").Cells(j, 1).Value = Workbooks(wb2).Sheets("database").Cells(x, 1)
Workbooks(wb1).Sheets("Report").Cells(j, 2).Value = Workbooks(wb2).Sheets("database").Cells(x, 2)
Workbooks(wb1).Sheets("Report").Cells(j, 3).Value = Workbooks(wb2).Sheets("database").Cells(x, 9)
Workbooks(wb1).Sheets("Report").Cells(j, 4).Value = Workbooks(wb2).Sheets("database").Cells(x, 10)
Workbooks(wb1).Sheets("Report").Cells(j, 5).Value = Workbooks(wb2).Sheets("database").Cells(x, 11)
Workbooks(wb1).Sheets("Report").Cells(j, 6).Value = Workbooks(wb2).Sheets("database").Cells(x, 12)
Workbooks(wb1).Sheets("Report").Cells(j, 7).Value = Workbooks(wb2).Sheets("database").Cells(x, 13)
Workbooks(wb1).Sheets("Report").Cells(j, 8).Value = Workbooks(wb2).Sheets("database").Cells(x, 14)
Workbooks(wb1).Sheets("Report").Cells(j, 9).Value = Workbooks(wb2).Sheets("database").Cells(x, 15)
j = j + 1
End If
Next x

[ This Message was edited by: Juan Pablo G. on 2002-02-19 20:38 ]
jgoulart is offline   Reply With Quote
Old Feb 19th, 2002, 06:35 PM   #2
Barrie Davidson
MrExcel MVP
 
Barrie Davidson's Avatar
 
Join Date: Feb 2002
Location: Winnipeg
Posts: 2,330
Default

Does your database have a header row (i.e., does the first row contain headers and not data)?
__________________
Barrie Davidson

"You're only given a little spark of madness. You mustn't lose it." - Robin Williams
Barrie Davidson is offline   Reply With Quote
Old Feb 19th, 2002, 06:37 PM   #3
Steve Hartman
Board Regular
 
Steve Hartman's Avatar
 
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
Default

Is this all the code? Isee you turned screen updating off but didn't turn it back on. Could it possibly be that the code is running just fine but only appears to be slow since the screen never updates?
Steve Hartman is offline   Reply With Quote
Old Feb 19th, 2002, 06:44 PM   #4
jgoulart
Board Regular
 
Join Date: Feb 2002
Location: John G
Posts: 62
Default

Yes, my database file has a header and I start stripping at row 2.

Yes, I see that I have turned off screen updating but I have put a stop in the code right after the code that I posted and most of my tests I wasn't patient enough to wait till it got to the stop I had to control break and look at what line I was on with the J var in the code.
jgoulart is offline   Reply With Quote
Old Feb 19th, 2002, 06:59 PM   #5
jgoulart
Board Regular
 
Join Date: Feb 2002
Location: John G
Posts: 62
Default

OOPS! I just ran the program on another computer and it ran a lot faster. I guess I have a problem with the pc I was using. Sorry for the false alarm. Thanks for you thoughts, input and help

John
jgoulart is offline   Reply With Quote
Old Feb 19th, 2002, 07:10 PM   #6
Barrie Davidson
MrExcel MVP
 
Barrie Davidson's Avatar
 
Join Date: Feb 2002
Location: Winnipeg
Posts: 2,330
Default

John, try this code (it should be faster because it's not looping through all the cells):
Code:
Dim rCtr
Dim x
Dim j
Dim wb1 As String
Dim wb2 As String
Dim stdate As Date
Dim endate As Date
Dim fname As String
Dim path As String

Application.ScreenUpdating = False
stdate = breport.sdate
endate = breport.edate
wb1 = ActiveWorkbook.Name
path = "c:HInv_data"
fname = "HIdbase.xls"

'test date inputs to see if they are dates
If IsDate(stdate) = False Then
MsgBox "Starting date must be a date in mm/dd/yy format"
Exit Sub
End If
If IsDate(endate) = False Then
MsgBox "Ending date must be a date in mm/dd/yy format"
Exit Sub
End If
'open database file
Application.DisplayAlerts = False
Workbooks.Open FileName:=path & fname
wb2 = ActiveWorkbook.Name

rCtr = Workbooks(wb2).Sheets("database").UsedRange.Rows.Count
Range(Cells(1, 1), Cells(rCtr, Range("A1").End(xlToRight).Column)).Select
Selection.AutoFilter Field:=10, Criteria1:=">=" & stdate, Operator:=xlAnd _
    , Criteria2:="<=" & endate
Range("A2:B" & rCtr & ",I2:O" & rCtr).Select
Selection.SpecialCells(xlCellTypeVisible).Select
Selection.Copy
Workbooks(wb1).Sheets("Report").Activate
ActiveSheet.Paste
Application.CutCopyMode = False
Range("A1").Select
Workbooks(wb2).Activate
Range(Cells(1, 1), Cells(rCtr, Range("A1").End(xlToRight).Column)).AutoFilter
Range("A1").Select
Workbooks(wb1).Activate
_________________

Barrie Davidson
My Excel Web Page

[ This Message was edited by: Barrie Davidson on 2002-02-19 18:11 ]
Barrie Davidson is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 07:14 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
All contents Copyright 1998-2012 by MrExcel Consulting.
diabetic desserts recipes recipes Diabetic Soups Holiday Pizza Recipes Popcorn Recipes Recipes For Microwave Pasta Recipes Casserole Recipes Chili Recipes Curry Recipes Crockpot Recipes Apples Recipes Bread Recipes Vegetarian Recipes Vegetable recipes Desserts Recipes Appetizers Ethnic Recipes Meat Dishes Barbecue Recipes Sauces Recipes Marinade Recipes Low Fat Recipes Frugal Gourmet Kitchen Classics Recipes On The Grill Cook Books Seafood Recipes Cajun Recipes Breads Low Fat Low Fat Breads Bread Machine Recipes Yeast Breads Quick Breads Fat Free Vegetarian Salad Recipes Eggplant Recipes Radish Recipes Tomato Recipes Jalapeno Recipes Potato Recipes Lettuce Recipes Cabbage Recipes Beans Ambrosia Recipes Biscotti Recipes Desserts Low Fat Cookie Recipes Cheesecake Recipes Cake Recipes Pie Recipes Muffin Recipes Custard Recipes Best Appetizers Appetizers Low Fat Salsa Recipes Dip Recipes International Recipes Afghan Recipes Alaska Recipes French Recipes German Recipes Greek Recipes Italian Recipes Spanish Recipes Thai Recipes Korean Recipes Chinese Recipes Mexican Recipes Indian Recipes Beef Recipes Pork Pork & Ham Pork Butts Pork Chop Recipes Pork Ribs Rulled Pork Poultry Recipes Stews Recipes Ground Beef Barbecue Grill Barbecue Smoker All Purpose Sauce BBQ Sauce Barbecue Sauce Carolina BBQ Sauce Pickle Recipes Marinades Smoking Low Fat Appetizers & Dips Low Fat Breakfast Low Fat Cakes Low Fat Cheesecakes Low Fat Cookies Low Fat Desserts Low Fat Fish & Seafood Low Fat Meats Low Fat Pasta Low Fat Pies Low Fat Salads Low Fat Sandwiches Low Fat Sauces & Condiments Low Fat Sides Low Fat Soups Low Fat Vegetarian Baker's Dozen Taste of Home Recipe Book Bon Appetit Cookbook Blacktie Cookbook Buster Cook Book Cookbook USA Cook Book Cook Book Sara's Cookbook Sara's Cookbook Appetizers and Dips Poultry recipes Diabetic recipes Holiday recipes Miscellaneous recipes 110 recipes 1986 Usenet cookbook 2900 recipes Cyberrealm recipes Great sysops of world Specialty recipes Ceideburg recipes Cheese recipes Chili recipes Fruits recipes Garlic recipes Great chefs of NY Londontowne recipes Raisins recipes Recipes for kids US Food Vegetarian recipes Bread recipes Drinks Meat Dishes Brisket recipes Caribou recipes Chicken recipes Filet mignons recipes Pork recipes Swordfish recipes Turkey recipes Pasta recipes Uncategorized recipes Ethnic recipes Canada recipes English recipes Ethiopia recipes Germany recipes Greece recipes Mexican recipes Philippines recipes Welsh recipes Microwave recipes Soups recipes Vegetable recipes Asparagus recipes Barley recipes Brown rice recipes Lentil recipes Mushrooms recipes Salads recipes Wild rice Desserts recipes Cakes recipes Chocolate recipes Cookies recipes Ice cream recipes