Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm using lots of arrows in an Excel spreadsheet, so I'm copying and pasting
the same arrow over and over. Every time I paste the object, it appears in random locations, usually off-screen, so I have to scroll around to find it. It doesn't seem to make a difference where I place the pointer, or whether I use a right-click option or keyboard shortcut. How can I make objects paste where I want them? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use a simple macro
Sub Addline() BeginXArrow = ActiveCell.Left EndXArrow = BeginXArrow + 25 BeginYArrow = ActiveCell.Top EndYArrow = BeginYArrow + 25 ActiveSheet.Shapes.Addline _ BeginXArrow, BeginYArrow, EndXArrow, EndYArrow End Sub "Blacktom" wrote: I'm using lots of arrows in an Excel spreadsheet, so I'm copying and pasting the same arrow over and over. Every time I paste the object, it appears in random locations, usually off-screen, so I have to scroll around to find it. It doesn't seem to make a difference where I place the pointer, or whether I use a right-click option or keyboard shortcut. How can I make objects paste where I want them? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel and Busines Objects . . | Excel Discussion (Misc queries) | |||
PowerPoint objects in Excel | Excel Discussion (Misc queries) | |||
Pasting on Filtered Data Sheets without pasting onto hidden cells | Excel Discussion (Misc queries) | |||
Pasting Objects into Chart title and Axis title | Charts and Charting in Excel | |||
Pasting numbers and formulas without pasting format. | Excel Discussion (Misc queries) |