How to copy Range and Paste as Values (from hidden sheet)

T

Tom Joseph

I am using the following to copy from a hidden sheet and paste to another
sheet.

Worksheets("Outliers_1").Cells.Copy Worksheets("Outliers").Range("A1")

I would like to paste just the values. The destination sheet is not hidden,
if that matters.
Can someone please tell me what addtional code I need to add to acomplish
this?

Thanks,

Tom
 
H

Hong Quach

Hi Tom,

This should do the paste by value for you.

Worksheets("Outliers_1").Cells.Copy
Worksheets("Outliers").Range("A1").PasteSpecial Paste:=xlPasteValues

Hong Quach
 
T

Tom Joseph

Thanks. I appreciate the help.

Hong Quach said:
Hi Tom,

This should do the paste by value for you.

Worksheets("Outliers_1").Cells.Copy
Worksheets("Outliers").Range("A1").PasteSpecial Paste:=xlPasteValues

Hong Quach
 

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