I wrote a bunch of SAP scripting code that works great and here comes (as usual) one of those issues that make no sense whatsoever.
So, I've tried two lines of code so far and about 500 variations of those two. In both cases, I get "Application-defined or object-defined error."
ThisWorkbook.Worksheets(7).Range(Cells(3, 1) & Cells(3, 1).End(xlDown)).Copy
ThisWorkbook.Worksheets(7).Range("A3:" & Range("A3").End(xlDown)).Copy
I simply want to select from A3 all the way down as far as the data goes. Can it get any simpler than that?