You can't "Select" data on a sheet that isn't active. In the first two workbooks, that sheet was probably onscreen when it was saved, but in the 3rd it was not.
That's the problem, but the solution is not to Select the sheet first, that's a novice move. The solution is to stop "selecting" things altogether. It's unnecessary and actually slows your macros way down. Humans have to select cells to copy them, VBA does not.
Try this:
Option Explicit
Sub MergeWorkbooks()
Dim wsMaster As Worksheet, wbkAdd As Workbook
Dim strPath As String, strFile As String, jcount As Long
Set wsMaster = ActiveWorkbook.Worksheets(1)
With Application.FileDialog(msoFileDialogFolderPicker)
If .Show Then
strPath = .SelectedItems(1)
Else
MsgBox "You didn't select a folder!", vbExclamation
Exit Sub
End If
End With
Application.ScreenUpdating = False
If Right(strPath, 1) <> "\" Then
strPath = strPath & "\"
End If
strFile = Dir(strPath & "*.xls*")
Do While Len(strFile) > 0
Set wbkAdd = Workbooks.Open(strPath & strFile)
'this next line draws on a value in the workbook to set a variable called jcount which is later used to determine how many rows of data to copy
jcount = wbkAdd.Worksheets(8).Range("a1").Value
wbkAdd.Worksheets("extracteddata").Range("a1:dd1").Resize(jcount).Copy
wsMaster.Range("A" & Rows.Count).End(xlUp).Offset(1, 0).PasteSpecial Paste:=xlPasteValues
wbkAdd.Close False
strFile = Dir
Loop
Application.ScreenUpdating = True
End Sub
Bookmarks