unfortunately my boss won't let my post a scrubbed example of our data, so i can't help you there... on the other hand i can post the working code that and that may help point you in some direction... whether or not we're moving forward or side to side is your call, haha.
Option Explicit
Sub CreateSummary()
Dim wsSum As Worksheet
Dim ws As Worksheet
Dim NR As Long
Set wsSum = Sheets("LFBsummary")
wsSum.Cells.ClearContents
NR = 1
Application.ScreenUpdating = False
For Each ws In Worksheets
If ws.Name <> "LFBsummary" Then
With ws
wsSum.Cells(NR, "B").Value = .[G13].Value
wsSum.Cells(NR, "C").Value = .[C8].Value
wsSum.Cells(NR, "D").Value = .[C4].Value
wsSum.Cells(NR, "E").Value = .[I22].Value
wsSum.Cells(NR, "G").Value = .[K22].Value
End With
NR = NR + 1
End If
Next ws
Application.ScreenUpdating = True
End Sub
now this is a bit simpler considering it just copy/paste info in static cells to a summary page vs matching a value and copying an offset, but at this point even capturing the whole row with "LFB" in it would help me create a summary of the data i need much faster than manually going through 1000 worksheets in 20 workbooks... thanks again for all the help, i greatly appreciate it... nothing more frustrating than being so close to the correct code and not knowing enough scripting to polish it off. - nicholas
Bookmarks