Copy/paste range without resizeing cells

G

Guest

Hello,

I want to copy cell data (presented as a table with 10 rows and 3 cols) from
one WB to another.
The problem is that the cell sizes differs between the two tables.
When pasting the range into the receiving table I want to keep the
cell-sizes in the receiving table.
How do I accomplish this?
Today I use:

Range("F34:N44").Select
Selection.Copy
....
ActiveSheet.Paste

Ideas someone?

/konpego
 
T

Tom Ogilvy

Range("F34:N44").Select
Selection.Copy
....
Activecell.Select
ActiveSheet.PasteSpecial xlValues
 
D

David Fam?

=?Utf-8?B?a29ucGVnbw==?= said:
Hello,

I want to copy cell data (presented as a table with 10 rows and 3 cols) from
one WB to another.
The problem is that the cell sizes differs between the two tables.
When pasting the range into the receiving table I want to keep the
cell-sizes in the receiving table.
How do I accomplish this?
Today I use:

Range("F34:N44").Select
Selection.Copy
...
ActiveSheet.Paste

Ideas someone?

/konpego

Just use:

"ActiveSheet.PasteSpecial(xlPasteAll)"

and not only ".Paste"

Bye,
David
 

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