Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I forgot to say that I am using Excel 97 (SR-2) and Windows 2000.
Bharesh |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry!! My original post was....
With the macro below, I get an "Out of Memory" error. Why should thi be and how do I fix this?? Sub BatchProcessor() With Application.FileSearch .NewSearch .LookIn = "d:\activea\" '(insert proper file directory) .SearchSubFolders = True .FileName = "PT4*.mea" .MatchTextExactly = True .FileType = msoFileTypeAllFiles If .Execute() 0 Then ' MsgBox "There were " & .FoundFiles.Count & "file(s) found." For I = 1 To .FoundFiles.Count Workbooks.Open FileName:=.FoundFiles(I) With ActiveWorkbook Columns("A:A").EntireColumn.AutoFit Columns("A:A").Select Selection.TextToColumns Destination:=Range("A1") DataType:=xlFixedWidth, _ FieldInfo:=Array(Array(0, 1), Array(16, 1)) Selection.AutoFilter Range("B1").Select Selection.AutoFilter Field:=1, Criteria1:="Dist" Range("B2:B65536").Select Selection.NumberFormat = "0.0000" Selection.NumberFormat = "0.000" Selection.Copy Range("D1").Select ActiveSheet.Paste Selection.AutoFilter Field:=1 Range("E1").Select ActiveCell.FormulaR1C1 = "=AVERAGE(C[-1])" Range("F1").Select ActiveCell.FormulaR1C1 = "=COUNT(C[-2])" Range("F2").Select End With Next I Else MsgBox "There were no files found" End If End With End Sub Regards, Bharesh Mandali -- Message posted from http://www.ExcelForum.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello again,
I tried the macro on a machine with Excel97 (SR2) and Windows98, an guess what??? I worked perfectly!!!! No errors at all. Is there a bu using Excel97 and Windows2000??? Regards, Bhares -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Run time error 1004, General ODBC error | New Users to Excel | |||
Runtime error '1004' General ODBC error | New Users to Excel | |||
Excel 2003 Macro Error - Runtime error 1004 | Excel Discussion (Misc queries) | |||
Error 1004 - Out of Memory | Excel Programming | |||
VBA error - run-time error '1004': | Excel Programming |