У меня есть код ниже, который я не могу заставить работать.
Процесс состоит в том, чтобы искать определенные подпапки c путей для книги Excel с определенным именем, как только она найдена, я нужно проверить, есть ли в документе конкретный рабочий лист, если он есть, отметьте, если это не так, вставьте лист из другого файла, который у меня есть, и закройте документ, мне нужно это до l oop через каждую папку с указать c путь (всего около 300 файлов)
это код, который у меня есть до сих пор
Public strDestinationPath As String
Public strSearch As Variant
Sub SearchFolders()
Range("B:M").ClearContents
Range("B1").Value = "Name"
Range("C1").Value = "Path"
Range("D1").Value = "Size (KB)"
Range("E1").Value = "DateLastModified"
Range("F1").Value = "Attributes"
Range("G1").Value = "DateCreated"
Range("H1").Value = "DateLastAccessed"
Range("I1").Value = "Drive"
Range("J1").Value = "ParentFolder"
Range("K1").Value = "ShortName"
Range("L1").Value = "ShortPath"
Range("M1").Value = "Type"
Range("B1").Select
Dim strPath As String
strPath = UserGetFolder & "\"
strSearch = InputBox("Enter Search Criteria (Case Sensitive)")
Dim OBJ As Object
Dim Folder As Object
Dim File As Object
Set OBJ = CreateObject("Scripting.FileSystemObject")
Set Folder = OBJ.GetFolder(strPath)
Call ListFiles(Folder)
Dim SubFolder As Object
For Each SubFolder In Folder.SubFolders
Call ListFiles(SubFolder)
Call GetSubFolders(SubFolder)
Next SubFolder
If Range("B2").Value = "" Then
MsgBox "No Files Found", vbInformation
Else
End If
Range("B1").Select
End Sub
Private Sub ListFiles(ByRef Folder As Object)
For Each File In Folder.Files
If InStr(File.Name, strSearch) <> 0 Then
ActiveCell.Offset(1, 0).Select
ActiveCell = File.Name
ActiveCell.Offset(0, 1) = File.Path
ActiveCell.Offset(0, 2) = (File.Size / 1024) 'IN KB
ActiveCell.Offset(0, 3) = File.DateLastModified
ActiveCell.Offset(0, 4) = File.Attributes
ActiveCell.Offset(0, 5) = File.DateCreated
ActiveCell.Offset(0, 6) = File.DateLastAccessed
ActiveCell.Offset(0, 7) = File.Drive
ActiveCell.Offset(0, 8) = File.ParentFolder
ActiveCell.Offset(0, 9) = File.ShortName
ActiveCell.Offset(0, 10) = File.ShortPath
ActiveCell.Offset(0, 11) = File.Type
Else
End If
Next File
End Sub
Private Sub GetSubFolders(ByRef SubFolder As Object)
Dim FolderItem As Object
For Each FolderItem In SubFolder.SubFolders
Call ListFiles(FolderItem)
Call GetSubFolders(FolderItem)
If File = Survey_Additional_Info Then
**Call WorksheetExists
Call CopySheetToClosedWB**
Else
'do nothing
End If
Next FolderItem
End Sub
Function UserGetFolder() As String
Dim fldr As FileDialog
Dim sItem As String
Set fldr = Application.FileDialog(msoFileDialogFolderPicker)
With fldr
.Title = "Select a Folder"
.AllowMultiSelect = False
.InitialFileName = Application.DefaultFilePath
If .Show <> -1 Then GoTo NextCode
sItem = .SelectedItems(1)
End With
NextCode:
UserGetFolder = sItem
Set fldr = Nothing
End Function
Function WorksheetExists(ByVal WorksheetName As String) As Boolean 'Code to find sheet in a file - added by me not part of original
Dim Sht As Worksheet
For Each Sht In closedBook.Worksheets
If Application.Proper(Time_Slots) = Application.Proper(Time_Slots) Then
WorksheetExists = True
Exit Function
Else: Call CopySheetToClosedWB
End If
Next Sht
WorksheetExists = False
End Function
Sub CopySheetToClosedWB() 'Copy Worksheet to a Closed Workbook
Application.ScreenUpdating = False
Set closedBook = Workbooks.Open("S:\Accordant\SUS\NewTimeSlotTab.xlsx")
Sheets("Time_Slots").Copy Before:=closedBook.Sheets(Alternative_Locations)
closedBook.Close SaveChanges:=True
Application.ScreenUpdating = True
End Sub
мой код работает хорошо до того момента, когда он достигает
call worksheet exists
Кто-нибудь может указать мне правильное направление?