For my real sheet I am working on I am actually using different cells than A1 and so on, but I was trying to make it easier to understand. Could you please take a look at the following code I have so far and let me know what is wrong. I got an error on the
Range("B5"

.Copy _
wsSummary.Cells(r, "A"

.Paste
Here is the code in full:
Set wsSummary = Worksheets("Summary"

For Each sh In Worksheets
With sh
If sh.Name <> wsSummary.Name Then
With wsSummary.Range("A5"

If .Value = "" Then
r = .Row
Else
If .Offset(1, 0).Value = "" Then
r = .Row + 1
Else
r = .End(xlDown).Row + 1
End If
End If
End With
Range("B5"

.Copy _
wsSummary.Cells(r, "A"

.Paste
Range(.Cells(10, "G"

, .Cells(87, "G"

).Copy
wsSummary.Cells(r, "B"

.PasteSpecial _
Paste:=xlAll, _
Operation:=xlNone, _
SkipBlanks:=False, _
Transpose:=True
End If
End With
Next
I really do appreciate your help!! Thanks again!