Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How to change the following macro in order to work in excel 2007:
Sub SearchFiles() With Application.FileSearch .NewSearch .LookIn = "F:\My Documents\" .SearchSubFolders = True .Filename = strFileName & ".xls" .FileType = msoFileTypeExcelWorkbooks If .Execute() 0 Then For i = 1 To .FoundFiles.Count If LCase(Right(.FoundFiles(i), Len(strFileName & ".xls") + 1)) = "\" & LCase(strFileName & ".xls") Then Workbooks.Open .FoundFiles(i), UpdateLinks:=3 Exit For End If Next i Else 'MsgBox "There were no files found." End If End With End Sub Regards, Pedro |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Pedro, XL 2007 was "improved" by removing FileSearch. Try using the Dir function. -- Jim Cone San Francisco, USA http://www.realezsites.com/bus/primitivesoftware (Excel Add-ins / Excel Programming) "Pedro" wrote in message How to change the following macro in order to work in excel 2007: Sub SearchFiles() With Application.FileSearch .NewSearch .LookIn = "F:\My Documents\" .SearchSubFolders = True .Filename = strFileName & ".xls" .FileType = msoFileTypeExcelWorkbooks If .Execute() 0 Then For i = 1 To .FoundFiles.Count If LCase(Right(.FoundFiles(i), Len(strFileName & ".xls") + 1)) = "\" & LCase(strFileName & ".xls") Then Workbooks.Open .FoundFiles(i), UpdateLinks:=3 Exit For End If Next i Else 'MsgBox "There were no files found." End If End With End Sub Regards, Pedro |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Format only part of a DataLabel in Excel 2007/PowerPoint 2007 char | Charts and Charting in Excel | |||
Excel 2007 files not showing on screen when opened in Excel 2007 | Setting up and Configuration of Excel | |||
Conflict in excel 2007 with Outlook 2007 attachment excel | Excel Discussion (Misc queries) | |||
Labels: Unable to import all records Excel 2007 to Word 2007 Mailm | Excel Discussion (Misc queries) | |||
Excel 2007 Macro Help (Excel 2003 not working in 2007) | Excel Discussion (Misc queries) |