Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Say you have several non-adjacent cells selected. How can you copy&paste the contents of these cells with the pasted cells also non-adjacent? ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Example to copy to the next sheet in the same place
Sub Test() For Each myarea In Selection.Areas With myarea .Copy Destination:=.Parent.Next.Range(.Address) End With Next myarea End Sub -- Regards Ron de Bruin (Win XP Pro SP-1 XL2002 SP-2) www.rondebruin.nl "hke" wrote in message ... Hi, Say you have several non-adjacent cells selected. How can you copy&paste the contents of these cells with the pasted cells also non-adjacent? ------------------------------------------------ ~~ Message posted from http://www.ExcelTip.com/ ~~ View and post usenet messages directly from http://www.ExcelForum.com/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Add cells on two adjacent rows but non-adjacent columns | Excel Worksheet Functions | |||
CTRL+Left-Click for Copying Non-Adjacent Cells Not Working | Excel Discussion (Misc queries) | |||
copying/dragging a formula to adjacent cells in Excel | Excel Discussion (Misc queries) | |||
copying adjacent cells with formula | Excel Worksheet Functions | |||
copying formula into non-adjacent cells, EXCEL2003 | Excel Discussion (Misc queries) |