![]() |
Copy Range
I need to copy a range from one sheet to another and past values only.
This works but pastes formulas and all: SourceRange.Copy DestRange I need to paste values only but this doesn't work: SourceRange.Copy DestRange.PasteSpecial(Paste:=xlPasteValues) How do I do it? Glen |
Copy Range
Glen Mettler wrote:
I need to copy a range from one sheet to another and past values only. This works but pastes formulas and all: SourceRange.Copy DestRange I need to paste values only but this doesn't work: SourceRange.Copy DestRange.PasteSpecial(Paste:=xlPasteValues) How do I do it? Glen Range("A1:C3").Copy Sheets("Sheet9").Range("M25").PasteSpecial Paste:=xlPasteValues Alan Beban |
Copy Range
break it into two lines
SourceRange. Copy DestRange.PasteSpecial Paste:=xlPasteValues -- Regards, Tom Ogilvy "Glen Mettler" wrote in message ... I need to copy a range from one sheet to another and past values only. This works but pastes formulas and all: SourceRange.Copy DestRange I need to paste values only but this doesn't work: SourceRange.Copy DestRange.PasteSpecial(Paste:=xlPasteValues) How do I do it? Glen |
All times are GMT +1. The time now is 08:52 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com