Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm using:
blah.Copy Destination:= etc Is there a way I can copy the values only and not the formatting? The VBA help is not forthcoming. TIA Damo |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You will need a .Copy then a .PasteSpecial.
Or: Range("B1").Value=Range("A1").Value NickHK "Damien McBain" wrote in message ... I'm using: blah.Copy Destination:= etc Is there a way I can copy the values only and not the formatting? The VBA help is not forthcoming. TIA Damo |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
NickHK wrote:
You will need a .Copy then a .PasteSpecial. Or: Range("B1").Value=Range("A1").Value Thanks Nick, I am trying to avoid using the clipboard. I should be able to make "a.value = b.value work". cheers Damien |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Help with copy destination | Excel Programming | |||
VBA .copy destination | Excel Discussion (Misc queries) | |||
Copy destination problem | Excel Programming | |||
Range.Copy (Destination) | Excel Programming | |||
.Copy Destination:= .PasteSpecial ??? | Excel Programming |