Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a piece of code that runs the following:
Selection.PasteSpecial Paste:=xlPasteAllExceptBorders, Operation:=xlNone, SkipBlanks:=False, Transpose:=False I would also like it to paste values and not links. How can both of these be accomplished? -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200705/1 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On May 4, 3:38 pm, "brownti via OfficeKB.com" <u31540@uwe wrote:
I have a piece of code that runs the following: Selection.PasteSpecial Paste:=xlPasteAllExceptBorders, Operation:=xlNone, SkipBlanks:=False, Transpose:=False I would also like it to paste values and not links. How can both of these be accomplished? -- Message posted via OfficeKB.comhttp://www.officekb.com/Uwe/Forums.aspx/excel-programming/200705/1 Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= False, Transpose:=False Try that! Hope that helps! -LT |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Execute two lines of code:
Selection.PasteSpecial Paste:=xlPasteAllExceptBorders, _ Operation:=xlNone, _ SkipBlanks:=False, _ Transpose:=False Selection.PasteSpecial Paste:=xlValues -- Regards, Tom Ogilvy "brownti via OfficeKB.com" wrote: I have a piece of code that runs the following: Selection.PasteSpecial Paste:=xlPasteAllExceptBorders, Operation:=xlNone, SkipBlanks:=False, Transpose:=False I would also like it to paste values and not links. How can both of these be accomplished? -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200705/1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Losing cell borders when I copy and paste | New Users to Excel | |||
can you change the default paste method? (paste values) | Excel Discussion (Misc queries) | |||
Copy&paste cells w/o affecting borders | Excel Discussion (Misc queries) | |||
Preserve borders during copy and paste? | Excel Discussion (Misc queries) | |||
Paste without including cell borders | Excel Worksheet Functions |