Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Charts and Pictures sit on top of the worksheet and is not a part of the
worksheet. When you copy cells the don't include the items that are not part of the workssheet. The pictures need to be copied seperately. chart are located by there .left and .top location. Each cell also has a ..left and .top property. Sub test() startleft = Range("B4").Left starttop = Range("B4").Top endleft = Range("D7").Left endtop = Range("D7").Top For Each chrt In ActiveSheet.Shapes If chrt.Type = msoChart Then If chrt.Left = startleft And _ chrt.Top = starttop And _ chrt.Left <= endleft And _ chrt.Top <= endtop Then MsgBox (chrt.Name & " was found to be inside range of cells") End If End If Next chrt End Sub "Fan924" wrote: Can I use something else other than... Cells(arr(x, 2), arr(x, 3)).PasteSpecial There is data and a chart in the copy area and in the paste, and the chart gets lost. ;( |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
removing single quotes from a paste operation | Excel Programming | |||
Change cut/paste operation to cut/insert operation | Excel Programming | |||
Use of Paste Special - Operation | Excel Worksheet Functions | |||
Curious operation of Paste | Excel Discussion (Misc queries) | |||
Chart vanishes! | Excel Programming |