Modify this code to paste special, values

J

Jonsson

Hi All,

I need to modify this code to paste only values.

Sheets("1").Range("b4:d33").Copy ActiveSheet.Range("b4:d33")

Any idea's?

//Thoma
 
J

Jack Schitt

Sheets("1").Range("b4:d33").copy
ActiveSheet.Range("b4.d33").PasteSpecial Paste:=xlValues
 
R

Ron de Bruin

Hi Jonsson

One way

Range("b4:d33").Value = Sheets("1").Range("b4:d33").Value
 
J

Jonsson

Hi, Ron and Tom

Thanks for your answers. The modification works great.

Thank you so much!

//Thoma
 

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