Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RANGE EXCEL copy cell that meets criteria in a range | Excel Worksheet Functions | |||
copy range and paste into every 3rd cell of new range | New Users to Excel | |||
How do I copy formulas but using the same range each time I copy | Excel Worksheet Functions | |||
Code to copy range vs Copy Entire Worksheet - can't figure it out | Excel Programming | |||
Range COPY function - how to copy VALUES and not formulas | Excel Programming |