copy/paste

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to copy the contents of a cell in another workbook. The problem
I have is that the source cell is the sum of many cells. This is causing me
problems. I get #REF instead of the cell data.

Any help would be appreciated.

Thanks
 
hi
Range("A1").PasteSpecial xlPasteValues
this will paste the formula as a value instead of a formula. I'm guessing
that when you paste into the new sheet the formula looses is references which
produces the #REF error.

Regards
FSt1
 
Windows("Book2").Activate
Range("Z100").Select
Selection.Copy
Windows("Book1").Activate
Range("A1").PasteSpecial Paste:=xlPasteValues
 

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