Copying rows from Subsidary Files To Mastersheet with Formulas

  • Thread starter Thread starter Volker Hormuth
  • Start date Start date
Volker,

Glad we finally cracked it.

Regards

Bob

Wohnungsbau GmbH said:
Hi Bob,

the code will do the job.
I save many hours !
Thanks ...

Volker


Bob Phillips said:
Volker,

Sorry, I was being particularly dense. It's the same intrinsic problem as
before (must figure out why it worked in my test though!).

Change
.Range(Cells(iRow2, 1), Cells(iRow2, 5)).Copy _
Destination:=ThisBookMaster.Cells(iRow1, 1)
to
.Range(.Cells(iRow2, 1), .Cells(iRow2, 5)).Copy _
Destination:=ThisBookMaster.Cells(iRow1, 1)

Sorry for taking so long over it.

Regards

Bob
way
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top