copying complete column incl. formating

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

If I use .Value as below, I can copy the column's values.

wks_SR.Columns("D:D").Value

I would like to copy the whole column including the
formating.

Does anyone know what I should use instead of .Value?

Thanks

Simon
 
I have solved the problem as below:

wks_SR.Columns("D:D").Copy wks_Orders.Columns(last_col + 1)
 
Copy and paste?

Record a macro when you copy|paste special|values, followed by copy|paste
special|formats and you'll have the code.
 

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