The workbook that you posted the first time had only two sheets, and the workbook that you are using had six worksheets (three of which were hidden). And it had formulas in the range of cells where the users would enter their values - my code was looking for constants, not formulas. Macro code is specific enough that things like that matter. So, anyway, try this version, which looks for two "Pricing" sheets, and converts everything to values before proceeding (but does not over-write the original workbook, so it won't matter):
Sub GetDataFromBidBook()
Dim rngD As Range
Dim rngC As Range
Dim rngV As Range
Dim wb As Workbook
Dim wsD As Worksheet
Dim wsDB As Worksheet
Dim lngR As Long
Set wsDB = ThisWorkbook.Worksheets(1)
wsDB.Cells(1, 1).Value = "County"
wsDB.Cells(1, 2).Value = "Description"
wsDB.Cells(1, 3).Value = "Amount"
Set wb = Workbooks.Open(Application.GetOpenFilename("Bid Files (*.xlsx),*.xlsx", Title:="Choose a file to process"))
For Each wsD In wb.Worksheets
If wsD.Name Like "*Pricing" Then
Set rngD = wsD.Range("A:A")
wsD.UsedRange.Value = wsD.UsedRange.Value
For Each rngC In Intersect(rngD, wsD.UsedRange)
If rngC.Value <> "" Then
If Application.CountA(rngC.EntireRow) > 3 Then
For Each rngV In rngC.Offset(0, 3).Resize(1, wsD.UsedRange.Columns.Count).SpecialCells(xlCellTypeConstants)
lngR = wsDB.Cells(wsDB.Rows.Count, 1).End(xlUp).Row + 1
wsDB.Cells(lngR, 1).Value = rngC.Value
wsDB.Cells(lngR, 2).Value = wsD.Cells(4, rngV.Column).Value
wsDB.Cells(lngR, 3).Value = rngV.Value
Next rngV
End If
End If
Next rngC
End If
Next wsD
wb.Close False
wsDB.UsedRange.EntireColumn.AutoFit
End Sub
Bookmarks