Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The code:
ActiveSheet.Shapes.SelectAll Selection.Delete Deleted all the Autoshapes. It also deleted all the buttons and dropdown boxes, too. How can I just delete Autoshapes without deleting buttons etc.? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub a()
Dim X As Shape For Each X In ActiveSheet.Shapes If X.Type = msoAutoShape Then X.Delete Next End Sub -- Jim Rech Excel MVP "scrabtree" wrote in message ... | The code: | | ActiveSheet.Shapes.SelectAll | Selection.Delete | | Deleted all the Autoshapes. It also deleted all the | buttons and dropdown boxes, too. How can I just delete | Autoshapes without deleting buttons etc.? | |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
set autoshapes default | Charts and Charting in Excel | |||
autoshapes | Excel Discussion (Misc queries) | |||
autoshapes | Excel Worksheet Functions | |||
Autoshapes | Excel Discussion (Misc queries) | |||
How do I ROUND() round off decimals of a column dataset? | Excel Worksheet Functions |