Copy and paste

B

Ben

Hi,

I am using the VB to copy and paste the text to a new
sheet in a new workbook but after pasting, the cell
shrink? how to prevent it uding VBA?

Regards,
Ben
 
J

Jim Rech

the cell shrink?

I'm not sure what that means. but if it's a result of formatting being
copied try copying just values:

ActiveCell.Copy
Workbooks.Add
ActiveCell.PasteSpecial xlPasteValues
Application.CutCopyMode = False

--
Jim Rech
Excel MVP

[email protected]...
| Hi,
|
| I am using the VB to copy and paste the text to a new
| sheet in a new workbook but after pasting, the cell
| shrink? how to prevent it uding VBA?
|
| Regards,
| Ben
 

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

Top