I think there is an error in the code for Lesson 17 where the headings are being copied over. Instead of:
WSD.Range("A1:E5").Copy Destination:=WSR.Range("A3")
it would be:
WSD.Range("A1:E1").Copy Destination:=WSR.Range("A3") <-- change E5 to E1
The way it is (E5), you are wiping out the first few rows that were copied over.
Jack
WSD.Range("A1:E5").Copy Destination:=WSR.Range("A3")
it would be:
WSD.Range("A1:E1").Copy Destination:=WSR.Range("A3") <-- change E5 to E1
The way it is (E5), you are wiping out the first few rows that were copied over.
Jack