Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Code graciously provided by Bernie Deitrick yesterday .....
Sub Consolidate() Dim myCell As Range With Application .DisplayAlerts = False .EnableEvents = False .ScreenUpdating = False End With With Application.FileSearch .NewSearch 'Copy or move this workbook to the folder with 'the files that you want to summarize .LookIn = ThisWorkbook.Path .FileType = msoFileTypeExcelWorkbooks If .Execute() 0 Then Set Basebook = ThisWorkbook For i = 1 To .FoundFiles.Count If .FoundFiles(i) < ThisWorkbook.FullName Then Set myBook = Workbooks.Open(.FoundFiles(i)) myBook.Worksheets("Daily!").Select For Each myCell In _ Range("10:10").SpecialCells(xlCellTypeConstants) If myCell.Value < "DOG" Then ThisWorkbook.Worksheets(1). _ Range("A65536").End(xlUp)(2).Value = _ myCell.Offset(-3, 0).Value End If Next myCell myBook.Close End If Next i End If End With With Application .DisplayAlerts = True .EnableEvents = True .ScreenUpdating = True End With Basebook.SaveAs Application.GetSaveAsFilename End Sub Im getting Rune Time Error 1004 on this line Range("10:10").SpecialCells(xlCellTypeConstants) Any ideas why? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Calling Bernie Deitrick | Excel Worksheet Functions | |||
Bernie Deitrick | Excel Discussion (Misc queries) | |||
Bernie My New Macro | Excel Worksheet Functions | |||
My New Macro from Bernie | Excel Worksheet Functions | |||
Bernie Deitrick | Excel Worksheet Functions |